Bug 239572: nullcheck before calling CallQueryInterface

r/sr=jst a=chofmann
This commit is contained in:
sicking%bigfoot.com 2006-04-20 03:38:55 +00:00
Родитель 64bfc5031a
Коммит 189952cf28
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -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;
}