| Summary: | REGRESSION (r269214): ASSERTION FAILED: m_state == CLOSED in WebCore::EventSource::abortConnectionAttempt | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Ryan Haddad <ryanhaddad> | ||||||||||||
| Component: | New Bugs | Assignee: | Chris Dumez <cdumez> | ||||||||||||
| Status: | RESOLVED FIXED | ||||||||||||||
| Severity: | Normal | CC: | achristensen, cdumez, darin, ews-watchlist, ggaren, japhet, sam, tsavell, webkit-bot-watchers-bugzilla, webkit-bug-importer, youennf | ||||||||||||
| Priority: | P2 | Keywords: | InRadar | ||||||||||||
| Version: | WebKit Nightly Build | ||||||||||||||
| Hardware: | Unspecified | ||||||||||||||
| OS: | Unspecified | ||||||||||||||
| See Also: | https://bugs.webkit.org/show_bug.cgi?id=159149 | ||||||||||||||
| Attachments: |
|
||||||||||||||
|
Description
Ryan Haddad
2020-11-02 13:19:14 PST
Created attachment 412962 [details]
crash log
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));
}
Created attachment 412971 [details]
WIP Patch
*** Bug 218461 has been marked as a duplicate of this bug. *** Created attachment 412975 [details]
WIP Patch
Created attachment 412977 [details]
WIP Patch
Created attachment 412983 [details]
Patch
Comment on attachment 412983 [details]
Patch
r=me
Committed r269284: <https://trac.webkit.org/changeset/269284> All reviewed patches have been landed. Closing bug and clearing flags on attachment 412983 [details]. |