[Webkit-unassigned] [Bug 116039] [WK2][Win] Fix ASSERT(DeleteTimerQueueTimer...)

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon May 13 09:48:23 PDT 2013


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





--- Comment #2 from Darin Adler <darin at apple.com>  2013-05-13 09:46:49 PST ---
(From update of attachment 201574)
View in context: https://bugs.webkit.org/attachment.cgi?id=201574&action=review

> Source/WebKit2/Platform/win/WorkQueueWin.cpp:231
>      if (!::DeleteTimerQueueTimer(timerContext->queue->m_timerQueue, timerContext->timer, 0))
> -        ASSERT_WITH_MESSAGE(false, "::DeleteTimerQueueTimer failed with error %lu", ::GetLastError());
> +        ASSERT_WITH_MESSAGE(::GetLastError() == ERROR_IO_PENDING, "::DeleteTimerQueueTimer failed with error %lu", ::GetLastError());

OK, but that still doesn’t answer the question of whether the error is acceptable. Did the deletion fail in this case? Will the timer be left around?

-- 
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