Bug 337970: don't pass null to RequestCharset, r+sr+a181=bzbarsky

git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_BRANCH@196552 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
gavin%gavinsharp.com
2006-05-15 17:54:58 +00:00
parent ced1c4e8e0
commit 4429e73f54

View File

@@ -526,10 +526,11 @@ nsHTMLDocument::TryBookmarkCharset(nsIDocShell* aDocShell,
PRBool wantCharset; // ignored for now
nsCAutoString charset;
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(aDocShell));
nsCOMPtr<nsISupports> closure;
nsresult rv = bookmarksResolver->RequestCharset(webNav,
aChannel,
&wantCharset,
nsnull,
getter_AddRefs(closure),
charset);
if (NS_SUCCEEDED(rv) && !charset.IsEmpty()) {
aCharset = charset;