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

Unified Diff: remoting/jingle_glue/ssl_socket_adapter.cc

Issue 9005015: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix. Created 9 years 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 | « ppapi/shared_impl/ppb_file_io_shared.cc ('k') | webkit/glue/context_menu.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/jingle_glue/ssl_socket_adapter.cc
diff --git a/remoting/jingle_glue/ssl_socket_adapter.cc b/remoting/jingle_glue/ssl_socket_adapter.cc
index 5bf2f737bcf3e1c6e67556364d2ba1621e039846..314e3cd56498622444185bf3110517a305439508 100644
--- a/remoting/jingle_glue/ssl_socket_adapter.cc
+++ b/remoting/jingle_glue/ssl_socket_adapter.cc
@@ -29,7 +29,8 @@ SSLSocketAdapter::SSLSocketAdapter(AsyncSocket* socket)
cert_verifier_(new net::CertVerifier()),
ssl_state_(SSLSTATE_NONE),
read_state_(IOSTATE_NONE),
- write_state_(IOSTATE_NONE) {
+ write_state_(IOSTATE_NONE),
+ data_transferred_(0) {
transport_socket_ = new TransportSocket(socket, this);
}
« no previous file with comments | « ppapi/shared_impl/ppb_file_io_shared.cc ('k') | webkit/glue/context_menu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698