mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
Fix bustage of bug 369260, null check
This commit is contained in:
parent
d9e209b096
commit
db3c3551d9
@ -542,7 +542,9 @@ void nsDocAccessible::ShutdownChildDocuments(nsIDocShellTreeItem *aStart)
|
||||
nsCOMPtr<nsIAccessibleDocument> docAccessible =
|
||||
GetDocAccessibleFor(treeItemChild);
|
||||
nsCOMPtr<nsPIAccessNode> accessNode = do_QueryInterface(docAccessible);
|
||||
accessNode->Shutdown();
|
||||
if (accessNode) {
|
||||
accessNode->Shutdown();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user