Title: [248549] trunk/Source/WebKit
Revision
248549
Author
[email protected]
Date
2019-08-12 14:43:00 -0700 (Mon, 12 Aug 2019)

Log Message

Unreviewed, add missing WTF::initializeMainThread() call to fix some crashes on the bots after r248533.

* Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceMain.mm:
(WebKit::XPCServiceMain):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (248548 => 248549)


--- trunk/Source/WebKit/ChangeLog	2019-08-12 21:40:56 UTC (rev 248548)
+++ trunk/Source/WebKit/ChangeLog	2019-08-12 21:43:00 UTC (rev 248549)
@@ -1,3 +1,10 @@
+2019-08-12  Chris Dumez  <[email protected]>
+
+        Unreviewed, add missing WTF::initializeMainThread() call to fix some crashes on the bots after r248533.
+
+        * Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceMain.mm:
+        (WebKit::XPCServiceMain):
+
 2019-08-12  Megan Gardner  <[email protected]>
 
         Fix Crash in Mail Search

Modified: trunk/Source/WebKit/Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceMain.mm (248548 => 248549)


--- trunk/Source/WebKit/Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceMain.mm	2019-08-12 21:40:56 UTC (rev 248548)
+++ trunk/Source/WebKit/Shared/EntryPointUtilities/Cocoa/XPCService/XPCServiceMain.mm	2019-08-12 21:43:00 UTC (rev 248549)
@@ -144,6 +144,8 @@
 #endif
 #endif
 
+    WTF::initializeMainThread();
+
     xpc_main(XPCServiceEventHandler);
     return 0;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to