Title: [140853] trunk/Source/WebKit2
Revision
140853
Author
a...@apple.com
Date
2013-01-25 11:46:13 -0800 (Fri, 25 Jan 2013)

Log 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 "+".

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (140852 => 140853)


--- trunk/Source/WebKit2/ChangeLog	2013-01-25 19:45:10 UTC (rev 140852)
+++ trunk/Source/WebKit2/ChangeLog	2013-01-25 19:46:13 UTC (rev 140853)
@@ -1,3 +1,13 @@
+2013-01-25  Alexey Proskuryakov  <a...@apple.com>
+
+        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 "+".
+
 2013-01-25  Brady Eidson  <beid...@apple.com>
 
         New NetworkProcess can ASSERT after old NetworkProcess crashes

Modified: trunk/Source/WebKit2/Shared/mac/ChildProcessMac.mm (140852 => 140853)


--- trunk/Source/WebKit2/Shared/mac/ChildProcessMac.mm	2013-01-25 19:45:10 UTC (rev 140852)
+++ trunk/Source/WebKit2/Shared/mac/ChildProcessMac.mm	2013-01-25 19:46:13 UTC (rev 140853)
@@ -85,7 +85,7 @@
     NSBundle *webkit2Bundle = [NSBundle bundleForClass:NSClassFromString(@"WKView")];
     String defaultProfilePath = [webkit2Bundle pathForResource:[[NSBundle mainBundle] bundleIdentifier] ofType:@"sb"];
 
-    String defaultSystemDirectorySuffix = [[NSBundle mainBundle] bundleIdentifier] + parameters.clientIdentifier;
+    String defaultSystemDirectorySuffix = String([[NSBundle mainBundle] bundleIdentifier]) + "+" + parameters.clientIdentifier;
     sandboxParameters.setSystemDirectorySuffix(defaultSystemDirectorySuffix);
 
     sandboxParameters.addPathParameter("WEBKIT2_FRAMEWORK_DIR", [[webkit2Bundle bundlePath] stringByDeletingLastPathComponent]);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to