diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-15 19:54:39 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-15 19:54:39 +0000 |
commit | ae26e29cd1f5229604b98eef776670c92c3b1009 (patch) | |
tree | c7c61ad60c75d1fa4ac8d2439a12217b62a685c0 /chrome/plugin | |
parent | 54a323ea46e0756d9270fa8e003f31aff7f8336e (diff) | |
download | chromium_src-ae26e29cd1f5229604b98eef776670c92c3b1009.zip chromium_src-ae26e29cd1f5229604b98eef776670c92c3b1009.tar.gz chromium_src-ae26e29cd1f5229604b98eef776670c92c3b1009.tar.bz2 |
Coverity: Initialize member variables.
CID=1420,1480,1517,1634
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3767001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62776 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/plugin')
-rw-r--r-- | chrome/plugin/plugin_channel_base.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/plugin/plugin_channel_base.cc b/chrome/plugin/plugin_channel_base.cc index df7cccc..dd1beb7 100644 --- a/chrome/plugin/plugin_channel_base.cc +++ b/chrome/plugin/plugin_channel_base.cc @@ -69,7 +69,8 @@ void PluginChannelBase::Broadcast(IPC::Message* message) { } PluginChannelBase::PluginChannelBase() - : plugin_count_(0), + : mode_(IPC::Channel::MODE_NONE), + plugin_count_(0), peer_pid_(0), in_remove_route_(false), channel_valid_(false), |