Bug 289477 crash [@ DocumentViewerImpl::GetPopupImageNode] when popupnode is null

r=biesi sr=bz a=shaver
This commit is contained in:
timeless%mozdev.org 2005-06-01 16:26:51 +00:00
Родитель 924d121948
Коммит cfee1a446d
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -3060,7 +3060,9 @@ DocumentViewerImpl::GetPopupImageNode(nsIImageLoadingContent** aNode)
nsresult rv = GetPopupNode(getter_AddRefs(node));
NS_ENSURE_SUCCESS(rv, rv);
CallQueryInterface(node, aNode);
if (node)
CallQueryInterface(node, aNode);
return NS_OK;
}