[Webkit-unassigned] [Bug 66640] [GTK] WebProcess crash on hitting assertion m_isWaitingForDidUpdate in DrawingAreaImpl

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Aug 22 10:03:33 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=66640





--- Comment #3 from Amruth Raj <amruthraj at motorola.com>  2011-08-22 10:03:33 PST ---
I found the problem to be with the GTK RunLoop::TimerBase implementation.

This happens when a timer gets created from another timerfired callback. In the present case, displayTimerFired does an m_displayTimer.startOneShot().

RunLoop::TimerBase maintains a single m_timerSource. This is causing a problem when trying to destroy the old timer which got fired. It is clearing the newly created timerSource.

I think the solution to this problem could be to pass the timerSource as a userdata that can be received in the callback function.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list