Another attempt (tested on GCC now) at bustage fix.

git-svn-id: svn://10.0.0.236/trunk@230965 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
benjamin%smedbergs.us
2007-07-25 20:46:15 +00:00
parent 2078811973
commit 51b18d8acf

View File

@@ -115,7 +115,7 @@ XRE_CreateAppData(nsILocalFile* aINIFile, nsXREAppData **aAppData)
{
NS_ENSURE_ARG(aINIFile && aAppData);
nsAutoPtr<ScopedAppData> data = new ScopedAppData();
nsAutoPtr<ScopedAppData> data(new ScopedAppData());
if (!data)
return NS_ERROR_OUT_OF_MEMORY;