Changeset 136973 in webkit
- Timestamp:
- Dec 7, 2012, 12:47:08 PM (13 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r136941 r136973 1 2012-12-07 Alexey Proskuryakov <ap@apple.com> 2 3 REGRESSION (r136770): Assertion failure in sendMessage() whenever WebProcess crashes 4 https://bugs.webkit.org/show_bug.cgi?id=104392 5 6 Reviewed by Anders Carlsson. 7 8 * Shared/ChildProcessProxy.cpp: (WebKit::ChildProcessProxy::sendMessage): Changed 9 back to using m_conection where it can be null. 10 1 11 2012-12-07 Jaehun Lim <ljaehun.lim@samsung.com> 2 12 -
trunk/Source/WebKit2/Shared/ChildProcessProxy.cpp
r136770 r136973 86 86 87 87 // If the web process has exited, connection will be null here. 88 if (! connection())88 if (!m_connection) 89 89 return false; 90 90
Note:
See TracChangeset
for help on using the changeset viewer.