зеркало из https://github.com/mozilla/pjs.git
Bug 239572: nullcheck before calling CallQueryInterface
r/sr=jst a=chofmann
This commit is contained in:
Родитель
64bfc5031a
Коммит
189952cf28
|
@ -246,7 +246,9 @@ GetDocumentFromScriptContext(nsIScriptContext *aScriptContext)
|
|||
if (window) {
|
||||
nsCOMPtr<nsIDOMDocument> domdoc;
|
||||
window->GetDocument(getter_AddRefs(domdoc));
|
||||
(void) CallQueryInterface(domdoc, &doc);
|
||||
//if (domdoc) {
|
||||
CallQueryInterface(domdoc, &doc);
|
||||
//}
|
||||
}
|
||||
return doc;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче