summaryrefslogtreecommitdiffstats
path: root/chrome/plugin
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-15 19:54:39 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-15 19:54:39 +0000
commitae26e29cd1f5229604b98eef776670c92c3b1009 (patch)
treec7c61ad60c75d1fa4ac8d2439a12217b62a685c0 /chrome/plugin
parent54a323ea46e0756d9270fa8e003f31aff7f8336e (diff)
downloadchromium_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.cc3
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),