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

Unified Diff: remoting/protocol/negotiating_authenticator.cc

Issue 9307114: Coverity: Initialize member variables. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Build fix. Created 8 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 | « remoting/protocol/jingle_session_manager.cc ('k') | webkit/plugins/ppapi/audio_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/negotiating_authenticator.cc
diff --git a/remoting/protocol/negotiating_authenticator.cc b/remoting/protocol/negotiating_authenticator.cc
index 1234c253fc32c9e929c6e9c15d33b3de8a84edd6..efdbb3204c29e2cafc8a8c8eb8258c9c0ec69290 100644
--- a/remoting/protocol/negotiating_authenticator.cc
+++ b/remoting/protocol/negotiating_authenticator.cc
@@ -72,7 +72,8 @@ scoped_ptr<Authenticator> NegotiatingAuthenticator::CreateForHost(
NegotiatingAuthenticator::NegotiatingAuthenticator(
Authenticator::State initial_state)
- : current_method_(AuthenticationMethod::Invalid()),
+ : certificate_sent_(false),
+ current_method_(AuthenticationMethod::Invalid()),
state_(initial_state),
rejection_reason_(INVALID_CREDENTIALS) {
}
« no previous file with comments | « remoting/protocol/jingle_session_manager.cc ('k') | webkit/plugins/ppapi/audio_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698