From 3c3e38fe296666ab49ca4b58ef93b4385dc365ef Mon Sep 17 00:00:00 2001 From: "darin%meer.net" Date: Thu, 29 Jul 2004 13:48:08 +0000 Subject: [PATCH] fix uninitialized variable warning (does not correspond to a real bug) --- xpcom/glue/standalone/nsXPCOMGlue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpcom/glue/standalone/nsXPCOMGlue.cpp b/xpcom/glue/standalone/nsXPCOMGlue.cpp index a4fabc37bd43..097835fca2d2 100644 --- a/xpcom/glue/standalone/nsXPCOMGlue.cpp +++ b/xpcom/glue/standalone/nsXPCOMGlue.cpp @@ -65,7 +65,7 @@ nsresult XPCOMGlueStartup(const char* xpcomFile) #ifdef XPCOM_GLUE_NO_DYNAMIC_LOADING return NS_OK; #else - nsresult rv; + nsresult rv = NS_OK; GetFrozenFunctionsFunc function = nsnull; xpcomFunctions.version = XPCOM_GLUE_VERSION;