Changeset 81519 in webkit
- Timestamp:
- Mar 18, 2011, 3:32:25 PM (14 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r81507 r81519 1 2011-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 1 14 2011-03-18 Balazs Kelemen <kbalazs@webkit.org> 2 15 -
trunk/Source/WebKit2/Platform/CoreIPC/Connection.cpp
r79634 r81519 379 379 m_syncMessageState->endWaitForSyncReply(); 380 380 381 if (!reply )381 if (!reply && m_client) 382 382 m_client->didFailToSendSyncMessage(this); 383 383
Note:
See TracChangeset
for help on using the changeset viewer.