summaryrefslogtreecommitdiffstats
path: root/net/socket
diff options
context:
space:
mode:
authorvandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 00:58:45 +0000
committervandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-25 00:58:45 +0000
commit4f3edf1d4231f09d486adbb56172ac6391589236 (patch)
treec42701e15d4cdae2efaa1b774f6338a7529ec6eb /net/socket
parent31627d5823b7ee0d589f4a5c4a9ad4ec44917356 (diff)
downloadchromium_src-4f3edf1d4231f09d486adbb56172ac6391589236.zip
chromium_src-4f3edf1d4231f09d486adbb56172ac6391589236.tar.gz
chromium_src-4f3edf1d4231f09d486adbb56172ac6391589236.tar.bz2
Cleanup now that issue 27870 is resolved.
BUG=27870 TEST=none Review URL: http://codereview.chromium.org/1272006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42568 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/socket')
-rw-r--r--net/socket/tcp_client_socket_win.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/socket/tcp_client_socket_win.cc b/net/socket/tcp_client_socket_win.cc
index fae2755..8d8cdd4 100644
--- a/net/socket/tcp_client_socket_win.cc
+++ b/net/socket/tcp_client_socket_win.cc
@@ -213,7 +213,8 @@ class TCPClientSocketWin::Core : public base::RefCounted<Core> {
TCPClientSocketWin::Core::Core(
TCPClientSocketWin* socket)
- : socket_(socket),
+ : write_buffer_length_(0),
+ socket_(socket),
ALLOW_THIS_IN_INITIALIZER_LIST(reader_(this)),
ALLOW_THIS_IN_INITIALIZER_LIST(writer_(this)),
slow_start_throttle_(kInitialSlowStartThrottle) {