[Webkit-unassigned] [Bug 218457] REGRESSION (r269214): ASSERTION FAILED: m_state == CLOSED in WebCore::EventSource::abortConnectionAttempt

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Nov 2 13:45:42 PST 2020


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

--- Comment #3 from Chris Dumez <cdumez at apple.com> ---
void EventSource::abortConnectionAttempt()
{
    ASSERT(m_state == CONNECTING);
    RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(!m_isSuspendedForBackForwardCache);

    if (m_requestInFlight)
        doExplicitLoadCancellation();
    else {
        m_state = CLOSED;
        unsetPendingActivity(*this);
    }

    ASSERT(m_state == CLOSED); // Failing here.
    dispatchEvent(Event::create(eventNames().errorEvent, Event::CanBubble::No, Event::IsCancelable::No));
}

-- 
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/20201102/96d53818/attachment.htm>


More information about the webkit-unassigned mailing list