зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
d47e491ba3
Коммит
11ed77ad8f
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче