Bug 590883. Don't forget to null-check the viewer, since the external resource load might have failed. r=roc a=blocking

This commit is contained in:
Boris Zbarsky 2010-08-27 22:44:36 -04:00
Родитель 78efffd9bf
Коммит 8e48dcb1b8
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -845,7 +845,9 @@ ExternalResourceShower(nsIURI* aKey,
nsExternalResourceMap::ExternalResource* aData,
void* aClosure)
{
if (aData->mViewer) {
aData->mViewer->Show();
}
return PL_DHASH_NEXT;
}