Title: [136973] trunk/Source/WebKit2
Revision
136973
Author
[email protected]
Date
2012-12-07 12:47:08 -0800 (Fri, 07 Dec 2012)

Log 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.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (136972 => 136973)


--- trunk/Source/WebKit2/ChangeLog	2012-12-07 20:41:30 UTC (rev 136972)
+++ trunk/Source/WebKit2/ChangeLog	2012-12-07 20:47:08 UTC (rev 136973)
@@ -1,3 +1,13 @@
+2012-12-07  Alexey Proskuryakov  <[email protected]>
+
+        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.
+
 2012-12-07  Jaehun Lim  <[email protected]>
 
         [EFL][WK2] Add ewk_settings APIs for text autosizing

Modified: trunk/Source/WebKit2/Shared/ChildProcessProxy.cpp (136972 => 136973)


--- trunk/Source/WebKit2/Shared/ChildProcessProxy.cpp	2012-12-07 20:41:30 UTC (rev 136972)
+++ trunk/Source/WebKit2/Shared/ChildProcessProxy.cpp	2012-12-07 20:47:08 UTC (rev 136973)
@@ -85,7 +85,7 @@
     }
 
     // If the web process has exited, connection will be null here.
-    if (!connection())
+    if (!m_connection)
         return false;
 
     return connection()->sendMessage(messageID, encoder, messageSendFlags);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to