bullet proofing (wall paper) fix for top crasher bug #243294

now we just assert, instead of crash. see bug #245055 about the real problem.

Crash [@ nsCaret::GetViewForRendering] when printing a schedule from www.matkahuolto.info

r/sr=roc
This commit is contained in:
sspitzer%mozilla.org 2004-05-29 19:57:00 +00:00
Родитель d47e491ba3
Коммит 11ed77ad8f
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -825,7 +825,9 @@ void nsCaret::GetViewForRendering(nsIFrame *caretFrame, EViewCoordinates coordTy
}
else
{
outClipRect = returnView->GetBounds();
NS_ASSERTION(returnView, "bulletproofing, see bug #24329");
if (returnView)
outClipRect = returnView->GetBounds();
}
if (outRelativeView)

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

@ -825,7 +825,9 @@ void nsCaret::GetViewForRendering(nsIFrame *caretFrame, EViewCoordinates coordTy
}
else
{
outClipRect = returnView->GetBounds();
NS_ASSERTION(returnView, "bulletproofing, see bug #24329");
if (returnView)
outClipRect = returnView->GetBounds();
}
if (outRelativeView)