Clean up leaks

git-svn-id: svn://10.0.0.236/trunk@48394 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
radha%netscape.com
1999-09-20 21:09:16 +00:00
parent 99f84bd069
commit fc0491b1d8
2 changed files with 10 additions and 8 deletions

View File

@@ -985,6 +985,7 @@ nsWebShell::Init(nsNativeWidget aNativeParent,
NS_WITH_SERVICE(nsIDocumentLoader, docLoaderService, kDocLoaderServiceCID, &rv);
if (NS_FAILED(rv)) return rv;
rv = docLoaderService->CreateDocumentLoader(&mDocLoader);
if (NS_FAILED(rv)) return rv;
}
@@ -3715,10 +3716,10 @@ nsresult nsWebShell::CheckForTrailingSlash(nsIURI* aURL)
// Replace the top most history entry with the new url
mSHist->SetURLForIndex(curIndex, newURL->GetUnicode());
}
else {
delete newURL;
delete historyURL;
}
if (newURL) delete newURL;
if (historyURL) delete historyURL;
return NS_OK;
}