bug 137079, account management at buy.com does not work, r=pink, sr=alecf

This commit is contained in:
morse%netscape.com 2002-05-13 20:41:22 +00:00
Родитель 32591f6dcd
Коммит 436a1babba
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -169,6 +169,10 @@ nsCookieHTTPNotify::OnModifyRequest(nsIHttpChannel *aHttpChannel)
nsCOMPtr<nsIURI> pFirstURL;
rv = aHttpChannel->GetDocumentURI(getter_AddRefs(pFirstURL));
if (NS_FAILED(rv)) return rv;
if (!pFirstURL) {
rv = aHttpChannel->GetOriginalURI(getter_AddRefs(pFirstURL));
if (NS_FAILED(rv)) return rv;
}
// Ensure that the cookie service exists
rv = SetupCookieService();