Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(390)

Unified Diff: net/http/partial_data.cc

Issue 517043: Http cache: Avoid resuming (and keeping) truncated entries... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Add Accept-Ranges:none check Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/http/http_response_headers_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/partial_data.cc
===================================================================
--- net/http/partial_data.cc (revision 35555)
+++ net/http/partial_data.cc (working copy)
@@ -130,9 +130,16 @@
if (byte_range_.IsValid())
return false;
+ // Now we avoid resume if there is no content length, but that was not
+ // always the case so double check here.
+ int64 total_length = headers->GetContentLength();
+ if (total_length <= 0 || !headers->HasStrongValidators())
+ return false;
+
truncated_ = true;
sparse_entry_ = false;
byte_range_.set_first_byte_position(entry->GetDataSize(kDataStream));
+ resource_size_ = total_length;
current_range_start_ = 0;
return true;
}
@@ -144,12 +151,11 @@
return true;
}
- std::string length_value;
- if (!headers->GetNormalizedHeader(kLengthHeader, &length_value))
+ int64 length_value = headers->GetContentLength();
+ if (length_value <= 0)
return false; // We must have stored the resource length.
- if (!StringToInt64(length_value, &resource_size_) || !resource_size_)
- return false;
+ resource_size_ = length_value;
// Make sure that this is really a sparse entry.
int64 n;
@@ -214,6 +220,11 @@
return false;
}
+ if (truncated_) {
+ if (!byte_range_.HasLastBytePosition())
+ byte_range_.set_last_byte_position(end);
+ }
+
if (start != current_range_start_)
return false;
« no previous file with comments | « net/http/http_response_headers_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698