simple null check to stop crasher. r=joki

This commit is contained in:
saari%netscape.com 2000-06-28 20:56:29 +00:00
Родитель 8780226d37
Коммит f24b7b375a
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1350,7 +1350,8 @@ NS_IMETHODIMP GlobalWindowImpl::Focus()
treeOwnerAsWin->SetVisibility(PR_TRUE);
nsCOMPtr<nsIPresShell> presShell;
mDocShell->GetPresShell(getter_AddRefs(presShell));
if(mDocShell)
mDocShell->GetPresShell(getter_AddRefs(presShell));
nsresult result = NS_OK;
if(presShell)