Title: [178539] trunk/Source/WebKit2
Revision
178539
Author
[email protected]
Date
2015-01-15 16:01:16 -0800 (Thu, 15 Jan 2015)

Log Message

Fix assertions on the Mountain Lion bots.

It is allowed to call addWorkQueueMessageReceiver even if the connection is open
so remove that assertion.

* Platform/IPC/Connection.cpp:
(IPC::Connection::addWorkQueueMessageReceiver):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (178538 => 178539)


--- trunk/Source/WebKit2/ChangeLog	2015-01-15 23:58:34 UTC (rev 178538)
+++ trunk/Source/WebKit2/ChangeLog	2015-01-16 00:01:16 UTC (rev 178539)
@@ -1,3 +1,13 @@
+2015-01-15  Anders Carlsson  <[email protected]>
+
+        Fix assertions on the Mountain Lion bots.
+
+        It is allowed to call addWorkQueueMessageReceiver even if the connection is open
+        so remove that assertion.
+
+        * Platform/IPC/Connection.cpp:
+        (IPC::Connection::addWorkQueueMessageReceiver):
+
 2015-01-15  Joseph Pecoraro  <[email protected]>
 
         Unreviewed build fix after r178536.

Modified: trunk/Source/WebKit2/Platform/IPC/Connection.cpp (178538 => 178539)


--- trunk/Source/WebKit2/Platform/IPC/Connection.cpp	2015-01-15 23:58:34 UTC (rev 178538)
+++ trunk/Source/WebKit2/Platform/IPC/Connection.cpp	2015-01-16 00:01:16 UTC (rev 178539)
@@ -280,7 +280,6 @@
 void Connection::addWorkQueueMessageReceiver(StringReference messageReceiverName, WorkQueue* workQueue, WorkQueueMessageReceiver* workQueueMessageReceiver)
 {
     ASSERT(&RunLoop::current() == &m_clientRunLoop);
-    ASSERT(!m_isConnected);
 
     RefPtr<Connection> connection(this);
     m_connectionQueue->dispatch([connection, messageReceiverName, workQueue, workQueueMessageReceiver] {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to