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

This commit is contained in:
benjamin@smedbergs.us 2007-07-25 13:46:15 -07:00
parent 236dc4d488
commit 054341b850

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;