[Webkit-unassigned] [Bug 192513] Crash in WebCore::ServiceWorkerGlobalScope

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Dec 22 17:17:53 PST 2018


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

--- Comment #3 from Michael Catanzaro <mcatanzaro at igalia.com> ---
Just from quick code inspection:

            connection->skipWaiting(workerThread->identifier(), [workerThread = WTFMove(workerThread), requestIdentifier] {

This is illegal because workerThread could be moved from in the second argument before the first argument is evaluated. It needs a temporary variable to hold the result of workerThread->identifier().

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20181223/3f82beb4/attachment.html>


More information about the webkit-unassigned mailing list