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

Unified Diff: net/base/io_buffer.cc

Issue 149043: Make new FtpNetworkTransaction handle short reads correctly.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: updated Created 11 years, 6 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 | « no previous file | net/ftp/ftp_network_transaction.h » ('j') | net/ftp/ftp_network_transaction.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/io_buffer.cc
diff --git a/net/base/io_buffer.cc b/net/base/io_buffer.cc
index db2bffbc75f853aa84930c4eb23fa7dbf365a8c5..eb7094bf35fb393f6c45d579c0ee446ffbdc3fc2 100644
--- a/net/base/io_buffer.cc
+++ b/net/base/io_buffer.cc
@@ -13,7 +13,7 @@ IOBuffer::IOBuffer(int buffer_size) {
data_ = new char[buffer_size];
}
void ReusedIOBuffer::SetOffset(int offset) {
- DCHECK(offset > 0 && offset < size_);
+ DCHECK(offset >= 0 && offset < size_);
data_ = base_->data() + offset;
}
« no previous file with comments | « no previous file | net/ftp/ftp_network_transaction.h » ('j') | net/ftp/ftp_network_transaction.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698