fixes bug 168577 "Crash in trunk [@ nsViewSourceChannel::GetURI] viewing

source of a mail message" r=bbaetz sr=bzbarsky
This commit is contained in:
darin%netscape.com 2002-09-28 04:51:50 +00:00
Родитель e8ca6db519
Коммит 7234993c98
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -178,6 +178,12 @@ nsViewSourceChannel::GetURI(nsIURI* *aURI)
if (NS_FAILED(rv))
return rv;
// protect ourselves against broken channel implementations
if (!uri) {
NS_ERROR("inner channel returned NS_OK and a null URI");
return NS_ERROR_UNEXPECTED;
}
nsCAutoString spec;
uri->GetSpec(spec);