Fixing crash in nsFocusController::GetWindowFromDocument. Patch by allan@beaufour.dk, r+sr=jst@mozilla.org, a=benjamin@smedbergs.us

This commit is contained in:
jst%mozilla.jstenback.com 2005-08-02 01:14:00 +00:00
Родитель ea595039b7
Коммит 91e96f10ed
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -394,7 +394,7 @@ nsFocusController::GetWindowFromDocument(nsIDOMDocument* aDocument)
nsCOMPtr<nsPIDOMWindow> win =
do_QueryInterface(doc->GetScriptGlobalObject());
if (win->IsInnerWindow()) {
if (win && win->IsInnerWindow()) {
return win->GetOuterWindow();
}