Changeset 140853 in webkit
- Timestamp:
- Jan 25, 2013, 11:46:13 AM (12 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r140852 r140853 1 2013-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 1 11 2013-01-25 Brady Eidson <beidson@apple.com> 2 12 -
trunk/Source/WebKit2/Shared/mac/ChildProcessMac.mm
r140764 r140853 86 86 String defaultProfilePath = [webkit2Bundle pathForResource:[[NSBundle mainBundle] bundleIdentifier] ofType:@"sb"]; 87 87 88 String defaultSystemDirectorySuffix = [[NSBundle mainBundle] bundleIdentifier]+ parameters.clientIdentifier;88 String defaultSystemDirectorySuffix = String([[NSBundle mainBundle] bundleIdentifier]) + "+" + parameters.clientIdentifier; 89 89 sandboxParameters.setSystemDirectorySuffix(defaultSystemDirectorySuffix); 90 90
Note:
See TracChangeset
for help on using the changeset viewer.