Bug 1067340 follow-up: null check the inner window r=bustage

Landed on a CLOSED TREE
This commit is contained in:
Ehsan Akhgari 2014-09-17 18:31:26 -04:00
Родитель 8e86fc0d5c
Коммит 05dc82bfcd
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -526,7 +526,7 @@ getInnerWindowID(nsIRequest* aRequest) {
nsPIDOMWindow* inner = pwindow->IsInnerWindow() ? pwindow.get() : pwindow->GetCurrentInnerWindow();
return inner->WindowID();
return inner ? inner->WindowID() : 0;
}
NS_IMETHODIMP