Changeset 136973 in webkit


Ignore:
Timestamp:
Dec 7, 2012, 12:47:08 PM (13 years ago)
Author:
ap@apple.com
Message:

REGRESSION (r136770): Assertion failure in sendMessage() whenever WebProcess crashes
https://bugs.webkit.org/show_bug.cgi?id=104392

Reviewed by Anders Carlsson.

  • Shared/ChildProcessProxy.cpp: (WebKit::ChildProcessProxy::sendMessage): Changed back to using m_conection where it can be null.
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r136941 r136973  
     12012-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
    1112012-12-07  Jaehun Lim  <ljaehun.lim@samsung.com>
    212
  • trunk/Source/WebKit2/Shared/ChildProcessProxy.cpp

    r136770 r136973  
    8686
    8787    // If the web process has exited, connection will be null here.
    88     if (!connection())
     88    if (!m_connection)
    8989        return false;
    9090
Note: See TracChangeset for help on using the changeset viewer.