Bug 589635 - null check the docshell parent before using it. r+a=roc

This commit is contained in:
Mats Palmgren 2010-12-08 03:20:56 +01:00
Родитель 6cfc7fec52
Коммит cd970d3ba6
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -723,6 +723,9 @@ nsSubDocumentFrame::AttributeChanged(PRInt32 aNameSpaceID,
nsCOMPtr<nsIDocShellTreeItem> parentItem;
docShellAsItem->GetParent(getter_AddRefs(parentItem));
if (!parentItem) {
return NS_OK;
}
PRInt32 parentType;
parentItem->GetItemType(&parentType);