summaryrefslogtreecommitdiffstats
path: root/chrome/default_plugin
diff options
context:
space:
mode:
authorjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-20 21:34:43 +0000
committerjhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-20 21:34:43 +0000
commit9fd5ef1c0abde8ab8a27b33100da9cbf8ca393aa (patch)
tree9ae9869615bb86a416adec42d4082298e165f0cf /chrome/default_plugin
parente307f57e183fdc76986c918d37f284ab2940c343 (diff)
downloadchromium_src-9fd5ef1c0abde8ab8a27b33100da9cbf8ca393aa.zip
chromium_src-9fd5ef1c0abde8ab8a27b33100da9cbf8ca393aa.tar.gz
chromium_src-9fd5ef1c0abde8ab8a27b33100da9cbf8ca393aa.tar.bz2
Coverity: Initialize member variables.
CID=1631,9315,9316,9447,10912,13053,13396,13397,13449 BUG=none TEST=none Review URL: http://codereview.chromium.org/3934001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63265 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/default_plugin')
-rw-r--r--chrome/default_plugin/plugin_impl_gtk.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/default_plugin/plugin_impl_gtk.cc b/chrome/default_plugin/plugin_impl_gtk.cc
index 7179858..ae7dfb2 100644
--- a/chrome/default_plugin/plugin_impl_gtk.cc
+++ b/chrome/default_plugin/plugin_impl_gtk.cc
@@ -20,7 +20,10 @@
// implemented.
PluginInstallerImpl::PluginInstallerImpl(int16 mode)
- : container_(NULL) {
+ : instance_(NULL),
+ plugin_install_stream_(NULL),
+ plugin_installer_state_(PluginInstallerStateUndefined),
+ container_(NULL) {
}
PluginInstallerImpl::~PluginInstallerImpl() {