зеркало из https://github.com/mozilla/pjs.git
Fixed unitialized value problem.
This commit is contained in:
Родитель
61df793102
Коммит
869e02c373
|
@ -462,6 +462,9 @@ nsHTMLFormElement::NamedItem(const nsString& aName, nsIDOMElement** aReturn)
|
|||
result = node->QueryInterface(kIDOMElementIID, (void **)aReturn);
|
||||
NS_RELEASE(node);
|
||||
}
|
||||
else {
|
||||
*aReturn = nsnull;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
|
|
@ -462,6 +462,9 @@ nsHTMLFormElement::NamedItem(const nsString& aName, nsIDOMElement** aReturn)
|
|||
result = node->QueryInterface(kIDOMElementIID, (void **)aReturn);
|
||||
NS_RELEASE(node);
|
||||
}
|
||||
else {
|
||||
*aReturn = nsnull;
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче