diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/base/file_stream_posix.cc | 1 | ||||
-rw-r--r-- | net/http/http_auth_handler_negotiate.cc | 1 | ||||
-rw-r--r-- | net/http/http_pipelined_connection_impl.cc | 5 |
3 files changed, 6 insertions, 1 deletions
diff --git a/net/base/file_stream_posix.cc b/net/base/file_stream_posix.cc index fd2af5b..50b1593 100644 --- a/net/base/file_stream_posix.cc +++ b/net/base/file_stream_posix.cc @@ -184,6 +184,7 @@ class FileStream::AsyncContext { FileStream::AsyncContext::AsyncContext() : message_loop_(MessageLoopForIO::current()), background_io_completed_(true, false), + message_loop_task_(NULL), is_closing_(false), record_uma_(false) {} diff --git a/net/http/http_auth_handler_negotiate.cc b/net/http/http_auth_handler_negotiate.cc index cfab741..f2e8044 100644 --- a/net/http/http_auth_handler_negotiate.cc +++ b/net/http/http_auth_handler_negotiate.cc @@ -22,6 +22,7 @@ namespace net { HttpAuthHandlerNegotiate::Factory::Factory() : disable_cname_lookup_(false), use_port_(false), + resolver_(NULL), #if defined(OS_WIN) max_token_length_(0), first_creation_(true), diff --git a/net/http/http_pipelined_connection_impl.cc b/net/http/http_pipelined_connection_impl.cc index ab7ee40..faea0760 100644 --- a/net/http/http_pipelined_connection_impl.cc +++ b/net/http/http_pipelined_connection_impl.cc @@ -802,7 +802,10 @@ SSLClientSocket::NextProto HttpPipelinedConnectionImpl::protocol_negotiated() return protocol_negotiated_; } -HttpPipelinedConnectionImpl::PendingSendRequest::PendingSendRequest() { +HttpPipelinedConnectionImpl::PendingSendRequest::PendingSendRequest() + : pipeline_id(0), + request_body(NULL), + response(NULL) { } HttpPipelinedConnectionImpl::PendingSendRequest::~PendingSendRequest() { |