[Webkit-unassigned] [Bug 18847] [GTK] crash when closing video that is streaming

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri May 2 18:52:43 PDT 2008


http://bugs.webkit.org/show_bug.cgi?id=18847


alp at nuanti.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |andersca at apple.com




------- Comment #2 from alp at nuanti.com  2008-05-02 18:52 PDT -------
This fixes the issue in ResourceHandleSoup.cpp, but I'm not too sure what the
correct fix will be:

void ResourceHandle::cancel()
{
    d->m_cancelled = true;
    if (d->m_msg) {
        soup_session_cancel_message(session, d->m_msg, SOUP_STATUS_CANCELLED);
        // For re-entrancy troubles we call didFinishLoading when the message
hasn't been handled yet.
        // FIXME: Temporarily disabled to work around plugin crash
        // http://bugs.webkit.org/show_bug.cgi?id=18847
        //d->client()->didFinishLoading(this);
    } else if (d->m_cancellable) {
        g_cancellable_cancel(d->m_cancellable);
        // FIXME: Temporarily disabled to work around plugin crash
        // http://bugs.webkit.org/show_bug.cgi?id=18847
        //d->client()->didFinishLoading(this);
    }
}


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list