[Webkit-unassigned] [Bug 106123] REGRESSION(r138222?): [Mac WK1] http/tests/appcache/main-resource-redirect.html asserts in WebFrameLoaderClient::dispatchDidFinishLoading

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jan 4 16:59:32 PST 2013


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


Ryosuke Niwa <rniwa at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|REGRESSION(r138222?): [Mac  |REGRESSION(r138222?): [Mac
                   |WK1]                        |WK1]
                   |http/tests/appcache/main-re |http/tests/appcache/main-re
                   |source-redirect.html        |source-redirect.html
                   |crashes in                  |asserts in
                   |WebFrameLoaderClient::dispa |WebFrameLoaderClient::dispa
                   |tchDidFinishLoading         |tchDidFinishLoading




--- Comment #6 from Ryosuke Niwa <rniwa at webkit.org>  2013-01-04 17:01:29 PST ---
Turned out that this is an assertion failure:
- (void)_removeObjectForIdentifier:(unsigned long)identifier
{
    ASSERT(_private->identifierMap.contains(identifier)); << this guy.
    _private->identifierMap.remove(identifier);

    // If the identifier map is now empty it means we're no longer loading anything
    // and we should release the web view. Autorelease rather than release in order to
    // avoid re-entering this method beneath -dealloc with the same identifier. <rdar://problem/10523721>
    if (_private->identifierMap.isEmpty())
        WebCFAutorelease(self);
}

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