Bug 189222 - TestGtkEmbed crashes when clicking on link. r=nisheeth/sr=dbaron/a=dbaron

git-svn-id: svn://10.0.0.236/trunk@137091 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ccarlen%netscape.com
2003-01-29 22:03:08 +00:00
parent 8460947240
commit eec9c13439

View File

@@ -6440,8 +6440,12 @@ nsDocShell::AddToGlobalHistory(nsIChannel* aChannel, nsIURI * aURI, PRBool aHidd
if (NS_SUCCEEDED(rv)) {
nsCOMPtr<nsIBrowserHistory> browserHistory =
do_QueryInterface(mGlobalHistory);
browserHistory->OutputReferrerURL(spec.get(),
referrerSpec.get());
// In embedding environments, the "lite" global history
// implementation might not implement nsIBrowserHistory.
if (browserHistory) {
browserHistory->OutputReferrerURL(spec.get(),
referrerSpec.get());
}
}
}
}