[Webkit-unassigned] [Bug 168375] REGRESSION(r212345): [GTK] ASSERT(cookieChangeCallbackMap().contains(jar)) failed in WebCore::stopObservingCookieChanges:54

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Feb 15 11:49:49 PST 2017


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

Michael Catanzaro <mcatanzaro at igalia.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mcatanzaro at igalia.com
            Summary|REGRESSION(r212345): [GTK]  |REGRESSION(r212345): [GTK]
                   |Crash in                    |ASSERT(cookieChangeCallback
                   |WebCore::stopObservingCooki |Map().contains(jar)) failed
                   |eChanges                    |in
                   |                            |WebCore::stopObservingCooki
                   |                            |eChanges:54

--- Comment #3 from Michael Catanzaro <mcatanzaro at igalia.com> ---
Ah, this is a debug assertion:

void startObservingCookieChanges(const NetworkStorageSession& storageSession, std::function<void ()>&& callback)
{
    auto* jar = storageSession.cookieStorage();
    ASSERT(!cookieChangeCallbackMap().contains(jar));
    cookieChangeCallbackMap().add(jar, WTFMove(callback));
    g_signal_connect(jar, "changed", G_CALLBACK(soupCookiesChanged), nullptr);
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20170215/05d717da/attachment.html>


More information about the webkit-unassigned mailing list