Bug 421432. Don't crash when we ScrollToAnchor after UnsuppressPainting tore down the document. r+sr=dbaron,a=beltzner

This commit is contained in:
roc+@cs.cmu.edu 2008-04-10 15:42:03 -07:00
Родитель 295712e3eb
Коммит 39cece6a50
1 изменённых файлов: 5 добавлений и 2 удалений

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

@ -1009,9 +1009,12 @@ DocumentViewerImpl::LoadComplete(nsresult aStatus)
// Now that the document has loaded, we can tell the presshell
// to unsuppress painting.
if (mPresShell && !mStopped) {
nsCOMPtr<nsIPresShell> shellDeathGrip(mPresShell); // bug 378682
nsCOMPtr<nsIPresShell> shellDeathGrip(mPresShell);
mPresShell->UnsuppressPainting();
mPresShell->ScrollToAnchor();
// mPresShell could have been removed now, see bug 378682/421432
if (mPresShell) {
mPresShell->ScrollToAnchor();
}
}
nsJSContext::LoadEnd();