[Webkit-unassigned] [Bug 22617] Segfault when logging into inbox.com

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Mar 17 03:52:47 PDT 2010


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


Robert Hogan <robert at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |robert at webkit.org




--- Comment #6 from Robert Hogan <robert at webkit.org>  2010-03-17 03:52:47 PST ---
(In reply to comment #5)
> (In reply to comment #3)
> > Can't reproduce on Windows, get "Frame load interrupted by policy change" when
> > trying to sign up.
> 
> I get that on Mac too. But that seems like a bug to me.

This seems to be generated by:

    case PolicyDownload:
        // m_handle can be null, e.g. when loading a substitute resource from
application cache.
        if (!m_handle) {
            receivedError(cannotShowURLError());
            return;
        }
        frameLoader()->client()->download(m_handle.get(), request(),
m_handle.get()->request(), r);
        // It might have gone missing
        if (frameLoader())
            receivedError(interruptionForPolicyChangeError());
        return;

in MainResourceLoader.cpp. 

Not sure why it generates an error when frameLoader() is still around, the
comment suggests it should be !frameLoader().

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