summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-08 02:25:33 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-08 02:25:33 +0000
commit3c810bb76cc6c27a3a46ca94c16ee81b78c30bf6 (patch)
tree62a6b7777b170d89e7051b9f4ea6ec9d5a65ab55 /remoting
parentd6cc2749d2f90acc2d92a526c1d2cbebbc101a19 (diff)
downloadchromium_src-3c810bb76cc6c27a3a46ca94c16ee81b78c30bf6.zip
chromium_src-3c810bb76cc6c27a3a46ca94c16ee81b78c30bf6.tar.gz
chromium_src-3c810bb76cc6c27a3a46ca94c16ee81b78c30bf6.tar.bz2
Coverity: Initialize member variables.
CID_COUNT=13 CID=102812,102838,102863,102867,102875,102891,102906,102924,102947,102964, 103070,103246,103259 BUG=none TEST=none R=groby Review URL: https://chromiumcodereview.appspot.com/9307114 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120913 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/protocol/jingle_session_manager.cc1
-rw-r--r--remoting/protocol/negotiating_authenticator.cc3
2 files changed, 3 insertions, 1 deletions
diff --git a/remoting/protocol/jingle_session_manager.cc b/remoting/protocol/jingle_session_manager.cc
index b1cfb61..8bc0533 100644
--- a/remoting/protocol/jingle_session_manager.cc
+++ b/remoting/protocol/jingle_session_manager.cc
@@ -31,6 +31,7 @@ JingleSessionManager::JingleSessionManager(
base::MessageLoopProxy* message_loop)
: message_loop_(message_loop),
signal_strategy_(NULL),
+ listener_(NULL),
allow_nat_traversal_(false),
ready_(false),
http_port_allocator_(NULL),
diff --git a/remoting/protocol/negotiating_authenticator.cc b/remoting/protocol/negotiating_authenticator.cc
index 1234c25..efdbb32 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) {
}