Bug 336587, Crash when window gets destroyed during DOMMouseScroll event, r+sr=bz

This commit is contained in:
Olli.Pettay%helsinki.fi 2006-05-04 15:15:31 +00:00
parent 653f364c96
commit ab6ce33675

View File

@ -1686,8 +1686,9 @@ nsEventStateManager::DoScrollText(nsPresContext* aPresContext,
return NS_OK;
// Re-resolve |aTargetFrame| in case it was destroyed by the
// DOM event handler above, bug 257998.
aTargetFrame =
aPresContext->GetPresShell()->GetPrimaryFrameFor(targetContent);
// But only if PresShell is still alive, bug 336587.
nsIPresShell* shell = aPresContext->GetPresShell();
aTargetFrame = shell ? shell->GetPrimaryFrameFor(targetContent) : nsnull;
if (!aTargetFrame) {
// Without a frame we can't do the normal ancestor search for a view
// to scroll. Don't fall through to the "passToParent" code at the end