Changeset 140853 in webkit


Ignore:
Timestamp:
Jan 25, 2013, 11:46:13 AM (12 years ago)
Author:
ap@apple.com
Message:

REGRESSION: System directory prefix doesn't have a "+"
https://bugs.webkit.org/show_bug.cgi?id=107971

Reviewed by Brady Eidson.

  • Shared/mac/ChildProcessMac.mm: (WebKit::ChildProcess::initializeSandbox): Re-added the "+".
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r140852 r140853  
     12013-01-25  Alexey Proskuryakov  <ap@apple.com>
     2
     3        REGRESSION: System directory prefix doesn't have a "+"
     4        https://bugs.webkit.org/show_bug.cgi?id=107971
     5
     6        Reviewed by Brady Eidson.
     7
     8        * Shared/mac/ChildProcessMac.mm: (WebKit::ChildProcess::initializeSandbox):
     9        Re-added the "+".
     10
    1112013-01-25  Brady Eidson  <beidson@apple.com>
    212
  • trunk/Source/WebKit2/Shared/mac/ChildProcessMac.mm

    r140764 r140853  
    8686    String defaultProfilePath = [webkit2Bundle pathForResource:[[NSBundle mainBundle] bundleIdentifier] ofType:@"sb"];
    8787
    88     String defaultSystemDirectorySuffix = [[NSBundle mainBundle] bundleIdentifier] + parameters.clientIdentifier;
     88    String defaultSystemDirectorySuffix = String([[NSBundle mainBundle] bundleIdentifier]) + "+" + parameters.clientIdentifier;
    8989    sandboxParameters.setSystemDirectorySuffix(defaultSystemDirectorySuffix);
    9090
Note: See TracChangeset for help on using the changeset viewer.