https://bugs.webkit.org/show_bug.cgi?id=61022
Reviewed by Alice Liu.
* WebProcess/mac/WebProcessMainMac.mm:
(WebKit::WebProcessMain): As long as we are not loading the shim on Snow Leopard, we should not
try to initialize it.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@86734
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2011-05-17 Dan Bernstein <mitz@apple.com>
+
+ Reviewed by Alice Liu.
+
+ <rdar://problem/9458300> REGRESSION (r86724): Repro crash loading any webpage in WebKit2 on SnowLeopard
+ https://bugs.webkit.org/show_bug.cgi?id=61022
+
+ * WebProcess/mac/WebProcessMainMac.mm:
+ (WebKit::WebProcessMain): As long as we are not loading the shim on Snow Leopard, we should not
+ try to initialize it.
+
2011-05-17 Brady Eidson <beidson@apple.com>
Rubberstamped by Sam Weinig.
WTF::initializeMainThread();
RunLoop::initializeMainRunLoop();
+#ifndef BUILDING_ON_SNOW_LEOPARD
// Initialize the shim.
WebProcess::shared().initializeShim();
-
+#endif
+
// Create the connection.
WebProcess::shared().initialize(serverPort, RunLoop::main());