From 8f2dc31d5d684c258c57ffbe4e2c7aa779479526 Mon Sep 17 00:00:00 2001 From: waterson Date: Tue, 23 Jun 1998 07:49:20 +0000 Subject: [PATCH] Fixed a bug with the call to nsGetFactory(). git-svn-id: svn://10.0.0.236/branches/OJI_19980618_BRANCH@4290 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/cmd/xfe/src/plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/cmd/xfe/src/plugin.cpp b/mozilla/cmd/xfe/src/plugin.cpp index a3dd6c77ddc..7287a9811f1 100644 --- a/mozilla/cmd/xfe/src/plugin.cpp +++ b/mozilla/cmd/xfe/src/plugin.cpp @@ -941,7 +941,7 @@ FE_LoadPlugin(void *pdesc, NPNetscapeFuncs *funcs, np_handle* handle) static NS_DEFINE_IID(kIPluginIID, NS_IPLUGIN_IID); nsIPlugin* userPlugin = NULL; - nsresult err = nsGetFactory(kIPluginIID, (nsIFactory**)&plugin); + nsresult err = nsGetFactory(kIPluginIID, (nsIFactory**)&userPlugin); handle->userPlugin = userPlugin; plugin->handle = handle;