From f97068fa67bea2e852e0e4652627740e8a2f96db Mon Sep 17 00:00:00 2001 From: "sfraser%netscape.com" Date: Wed, 14 Nov 2001 01:14:08 +0000 Subject: [PATCH] Fix for blocker bug 109893. Comment out line that adds the plugins folder to the XPT search paths, to avoid errors when trying to look in MRJPlugin.jar for .xpt files on Mac. r=jband/a=sleestack --- xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp b/xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp index b6217b61965..292bebc83bc 100644 --- a/xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp +++ b/xpcom/reflect/xptinfo/src/xptiInterfaceInfoManager.cpp @@ -231,7 +231,8 @@ PRBool xptiInterfaceInfoManager::BuildFileSearchPath(nsISupportsArray** aPath) // Add additional plugins dirs // No error checking here since this is optional in some embeddings - (void) AppendFromDirServiceList(NS_APP_PLUGINS_DIR_LIST, searchPath); + // Temporarily commented out; see bug 109893. + //(void) AppendFromDirServiceList(NS_APP_PLUGINS_DIR_LIST, searchPath); NS_ADDREF(*aPath = searchPath);