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

Unified Diff: net/http/http_stream_parser.cc

Issue 660194: Return a soft error when we detect the 3rd party problem causing bug 27870. (Closed)
Patch Set: Make excessively large return values return a soft error Created 10 years, 10 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_stream_parser.h ('k') | net/socket/tcp_client_socket_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_stream_parser.cc
diff --git a/net/http/http_stream_parser.cc b/net/http/http_stream_parser.cc
index b16c1bfd609db633f5048ed42481bf6c8ccf7b9c..02b09f089671c0e541a58b9bc75776d6a83e165e 100644
--- a/net/http/http_stream_parser.cc
+++ b/net/http/http_stream_parser.cc
@@ -20,7 +20,6 @@ HttpStreamParser::HttpStreamParser(ClientSocketHandle* connection,
request_(NULL),
request_headers_(NULL),
request_body_(NULL),
- expected_request_body_result_(0),
read_buf_(read_buffer),
read_buf_unused_offset_(0),
response_header_start_offset_(-1),
@@ -208,15 +207,11 @@ int HttpStreamParser::DoSendHeaders(int result) {
}
int HttpStreamParser::DoSendBody(int result) {
- if (result > 0) {
- CHECK(result <= expected_request_body_result_) <<
- expected_request_body_result_;
+ if (result > 0)
request_body_->DidConsume(result);
- }
if (!request_body_->eof()) {
int buf_len = static_cast<int>(request_body_->buf_len());
- expected_request_body_result_ = buf_len;
result = connection_->socket()->Write(request_body_->buf(), buf_len,
&io_callback_);
} else {
« no previous file with comments | « net/http/http_stream_parser.h ('k') | net/socket/tcp_client_socket_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698