Title: [211568] trunk/Source/WebKit2
Revision
211568
Author
ander...@apple.com
Date
2017-02-02 09:52:44 -0800 (Thu, 02 Feb 2017)

Log Message

<rdar://problem/30323148> Webkit Nightly on 10.10 broken

Follow-up fix.

* Platform/IPC/mac/ConnectionMac.mm:
(IPC::Connection::open):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (211567 => 211568)


--- trunk/Source/WebKit2/ChangeLog	2017-02-02 17:46:20 UTC (rev 211567)
+++ trunk/Source/WebKit2/ChangeLog	2017-02-02 17:52:44 UTC (rev 211568)
@@ -2,6 +2,15 @@
 
         <rdar://problem/30323148> Webkit Nightly on 10.10 broken
 
+        Follow-up fix.
+
+        * Platform/IPC/mac/ConnectionMac.mm:
+        (IPC::Connection::open):
+
+2017-02-02  Anders Carlsson  <ander...@apple.com>
+
+        <rdar://problem/30323148> Webkit Nightly on 10.10 broken
+
         Try to fix the 10.10 build.
 
         * Platform/IPC/mac/ConnectionMac.mm:

Modified: trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm (211567 => 211568)


--- trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm	2017-02-02 17:46:20 UTC (rev 211567)
+++ trunk/Source/WebKit2/Platform/IPC/mac/ConnectionMac.mm	2017-02-02 17:52:44 UTC (rev 211568)
@@ -226,7 +226,7 @@
 
 #if PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED <= 101000
     if (m_exceptionPort) {
-        m_exceptionPortDataAvailableSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_MACH_RECV, m_exceptionPort, 0, m_connectionQueue.dispatchQueue());
+        m_exceptionPortDataAvailableSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_MACH_RECV, m_exceptionPort, 0, m_connectionQueue->dispatchQueue());
         dispatch_source_set_event_handler(m_exceptionPortDataAvailableSource, [connection] {
             connection->exceptionSourceEventHandler();
         });
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to