diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-05 00:14:53 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-05 00:14:53 +0000 |
commit | 6451e33be245692b5c4374490e9c9ef38db6aab6 (patch) | |
tree | e8e8ddc27375625c76dee2a18d3a57afaf978698 /chrome/common/chrome_plugin_lib.cc | |
parent | 37b82e00d9960b8e54d57b2defd80805d57331bb (diff) | |
download | chromium_src-6451e33be245692b5c4374490e9c9ef38db6aab6.zip chromium_src-6451e33be245692b5c4374490e9c9ef38db6aab6.tar.gz chromium_src-6451e33be245692b5c4374490e9c9ef38db6aab6.tar.bz2 |
Coverity: Initialize data members in constructor.
CID=12798, 12835, 12921, 12922, 12923, 13083, 1408, 7026, 7027, 13052, 13058, 8295, 2289, 13026, 13133, 13233, 13184, 13183
BUG=none
TEST=none
Patch by Kausalya Madhusudhanan <kmadhusu@chromium.org>
Review URL: http://codereview.chromium.org/3567011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61448 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_plugin_lib.cc')
-rw-r--r-- | chrome/common/chrome_plugin_lib.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/common/chrome_plugin_lib.cc b/chrome/common/chrome_plugin_lib.cc index 1e74f4c..2b78ed25c 100644 --- a/chrome/common/chrome_plugin_lib.cc +++ b/chrome/common/chrome_plugin_lib.cc @@ -189,7 +189,8 @@ ChromePluginLib::ChromePluginLib(const FilePath& filename) #endif initialized_(false), CP_VersionNegotiate_(NULL), - CP_Initialize_(NULL) { + CP_Initialize_(NULL), + CP_Test_(NULL) { memset((void*)&plugin_funcs_, 0, sizeof(plugin_funcs_)); } |