Fix for 64270 - crash on window.close when another window is referenced

r=jst,rpotts, sr=rpotts
This commit is contained in:
chak%netscape.com 2001-05-14 14:53:03 +00:00
Родитель f6cc8a5a36
Коммит d7144f007d
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -232,9 +232,11 @@ nsWebShell::FireUnloadForChildren()
PRInt32 i, n = mChildren.Count(); PRInt32 i, n = mChildren.Count();
for (i = 0; i < n; i++) { for (i = 0; i < n; i++) {
nsIDocShell* shell = (nsIDocShell*) mChildren.ElementAt(i); nsIDocShell* shell = (nsIDocShell*) mChildren.ElementAt(i);
if(shell) {
nsCOMPtr<nsIWebShell> webShell(do_QueryInterface(shell)); nsCOMPtr<nsIWebShell> webShell(do_QueryInterface(shell));
rv = webShell->FireUnloadEvent(); rv = webShell->FireUnloadEvent();
} }
}
return rv; return rv;
} }