Bug 587494: Check whether our ExternalResource has a viewer before calling Hide() on it, to fix null-crash. r=roc a=blocking

This commit is contained in:
Daniel Holbert 2010-08-15 15:49:21 -07:00
Родитель 32e369134b
Коммит 284e94e2be
1 изменённых файлов: 3 добавлений и 1 удалений

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

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