зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
32e369134b
Коммит
284e94e2be
|
@ -826,7 +826,9 @@ ExternalResourceHider(nsIURI* aKey,
|
|||
nsExternalResourceMap::ExternalResource* aData,
|
||||
void* aClosure)
|
||||
{
|
||||
aData->mViewer->Hide();
|
||||
if (aData->mViewer) {
|
||||
aData->mViewer->Hide();
|
||||
}
|
||||
return PL_DHASH_NEXT;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче