Changeset 86724 in webkit


Ignore:
Timestamp:
May 17, 2011 5:29:36 PM (13 years ago)
Author:
beidson@apple.com
Message:

https://bugs.webkit.org/show_bug.cgi?id=60595
Fix the rampant WebProcess crashing because we're trying to install the WebProcess shim
into QTKitServer when we launch it.

Rubberstamped by Sam Weinig.

  • UIProcess/Launcher/mac/ProcessLauncherMac.mm:

(WebKit::ProcessLauncher::launchProcess): This is only happening on SnowLeopard, so put

SnowLeopard build guards around the shim install path.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r86719 r86724  
     12011-05-17  Brady Eidson  <beidson@apple.com>
     2
     3        Rubberstamped by Sam Weinig.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=60595
     6        Fix the rampant WebProcess crashing because we're trying to install the WebProcess shim
     7        into QTKitServer when we launch it.
     8
     9        * UIProcess/Launcher/mac/ProcessLauncherMac.mm:
     10        (WebKit::ProcessLauncher::launchProcess): This is only happening on SnowLeopard, so put
     11          SnowLeopard build guards around the shim install path.
     12
    1132011-05-17  Sheriff Bot  <webkit.review.bot@gmail.com>
    214
  • trunk/Source/WebKit2/UIProcess/Launcher/mac/ProcessLauncherMac.mm

    r86678 r86724  
    146146    if (m_launchOptions.processType == ProcessLauncher::PluginProcess)
    147147        processShimPathNSString = [[processAppExecutablePath stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"PluginProcessShim.dylib"];
     148#ifndef BUILDING_ON_SNOW_LEOPARD
    148149    else if (m_launchOptions.processType == ProcessLauncher::WebProcess)
    149150        processShimPathNSString = [[processAppExecutablePath stringByDeletingLastPathComponent] stringByAppendingPathComponent:@"WebProcessShim.dylib"];
     151#endif
    150152   
    151153    // Make sure that the shim library file exists and insert it.
Note: See TracChangeset for help on using the changeset viewer.