[Webkit-unassigned] [Bug 7223] Reproducible crash when tabbing to a frame that has not been loaded

bugzilla-daemon at opendarwin.org bugzilla-daemon at opendarwin.org
Sun Feb 12 21:32:50 PST 2006


http://bugzilla.opendarwin.org/show_bug.cgi?id=7223


darin at apple.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |EasyFix




------- Comment #3 from darin at apple.com  2006-02-12 21:32 PDT -------
My guess is that this line of code:

            FrameView *childFrameWidget = widget->isFrameView() ?
static_cast<FrameView *>(widget) : 0;

needs a check for widget of 0.

            FrameView *childFrameWidget = (widget && widget->isFrameView()) ?
static_cast<FrameView *>(widget) : 0;


-- 
Configure bugmail: http://bugzilla.opendarwin.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list