summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy
diff options
context:
space:
mode:
authorpiman@google.com <piman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-26 00:00:42 +0000
committerpiman@google.com <piman@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-26 00:00:42 +0000
commitfbdfe7274b8b88fbd82f96ff43162f6acc463e9d (patch)
treee87b566ddc60d4fbb4a6e79d1e035d9f3f8a8be3 /ppapi/proxy
parent47f19be3d91352d5b2465ebdf6d24f7ed72a2d71 (diff)
downloadchromium_src-fbdfe7274b8b88fbd82f96ff43162f6acc463e9d.zip
chromium_src-fbdfe7274b8b88fbd82f96ff43162f6acc463e9d.tar.gz
chromium_src-fbdfe7274b8b88fbd82f96ff43162f6acc463e9d.tar.bz2
Fix uninitialized variable.
BUG=chromium-os:14517 TEST=myspace.com with pepper flash. Click on login. Observe no plugin crash. Review URL: http://codereview.chromium.org/6904012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82954 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy')
-rw-r--r--ppapi/proxy/host_dispatcher.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/ppapi/proxy/host_dispatcher.cc b/ppapi/proxy/host_dispatcher.cc
index dc2c832..2f4be5a 100644
--- a/ppapi/proxy/host_dispatcher.cc
+++ b/ppapi/proxy/host_dispatcher.cc
@@ -62,7 +62,8 @@ HostDispatcher::HostDispatcher(base::ProcessHandle remote_process_handle,
GetInterfaceFunc local_get_interface)
: Dispatcher(remote_process_handle, local_get_interface),
pp_module_(module),
- ppb_proxy_(NULL) {
+ ppb_proxy_(NULL),
+ allow_plugin_reentrancy_(false) {
if (!g_module_to_dispatcher)
g_module_to_dispatcher = new ModuleToDispatcherMap;
(*g_module_to_dispatcher)[pp_module_] = this;