зеркало из https://github.com/mozilla/gecko-dev.git
fix bug 9032, check for null crash
This commit is contained in:
Родитель
15c866b72b
Коммит
77096ca1e6
|
@ -1895,6 +1895,9 @@ nsWebShellWindow::HandleUnknownContentType(nsIDocumentLoader* loader,
|
|||
//----------------------------------------
|
||||
nsCOMPtr<nsIDOMNode> nsWebShellWindow::FindNamedDOMNode(const nsString &aName, nsIDOMNode * aParent, PRInt32 & aCount, PRInt32 aEndCount)
|
||||
{
|
||||
if(!aParent)
|
||||
return nsnull;
|
||||
|
||||
nsCOMPtr<nsIDOMNode> node;
|
||||
aParent->GetFirstChild(getter_AddRefs(node));
|
||||
while (node) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче