Changeset 81519 in webkit


Ignore:
Timestamp:
Mar 18, 2011, 3:32:25 PM (14 years ago)
Author:
andersca@apple.com
Message:

2011-03-18 Anders Carlsson <andersca@apple.com>

Reviewed by Sam Weinig.

Crash when sending a sync message ends up invalidating the connection
https://bugs.webkit.org/show_bug.cgi?id=56686
<rdar://problem/9048781>

Guard against a null client.

  • Platform/CoreIPC/Connection.cpp: (CoreIPC::Connection::sendSyncMessage):
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r81507 r81519  
     12011-03-18  Anders Carlsson  <andersca@apple.com>
     2
     3        Reviewed by Sam Weinig.
     4
     5        Crash when sending a sync message ends up invalidating the connection
     6        https://bugs.webkit.org/show_bug.cgi?id=56686
     7        <rdar://problem/9048781>
     8
     9        Guard against a null client.
     10
     11        * Platform/CoreIPC/Connection.cpp:
     12        (CoreIPC::Connection::sendSyncMessage):
     13
    1142011-03-18  Balazs Kelemen  <kbalazs@webkit.org>
    215
  • trunk/Source/WebKit2/Platform/CoreIPC/Connection.cpp

    r79634 r81519  
    379379    m_syncMessageState->endWaitForSyncReply();
    380380
    381     if (!reply)
     381    if (!reply && m_client)
    382382        m_client->didFailToSendSyncMessage(this);
    383383
Note: See TracChangeset for help on using the changeset viewer.