Changeset 86734 in webkit


Ignore:
Timestamp:
May 17, 2011 9:43:44 PM (13 years ago)
Author:
mitz@apple.com
Message:

<rdar://problem/9458300> REGRESSION (r86724): Repro crash loading any webpage in WebKit2 on SnowLeopard
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.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r86724 r86734  
     12011-05-17  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Alice Liu.
     4
     5        <rdar://problem/9458300> REGRESSION (r86724): Repro crash loading any webpage in WebKit2 on SnowLeopard
     6        https://bugs.webkit.org/show_bug.cgi?id=61022
     7
     8        * WebProcess/mac/WebProcessMainMac.mm:
     9        (WebKit::WebProcessMain): As long as we are not loading the shim on Snow Leopard, we should not
     10        try to initialize it.
     11
    1122011-05-17  Brady Eidson  <beidson@apple.com>
    213
  • trunk/Source/WebKit2/WebProcess/mac/WebProcessMainMac.mm

    r86678 r86734  
    9191    RunLoop::initializeMainRunLoop();
    9292
     93#ifndef BUILDING_ON_SNOW_LEOPARD
    9394    // Initialize the shim.
    9495    WebProcess::shared().initializeShim();
    95    
     96#endif
     97
    9698    // Create the connection.
    9799    WebProcess::shared().initialize(serverPort, RunLoop::main());
Note: See TracChangeset for help on using the changeset viewer.