Title: [262005] trunk/Source/WebKit
Revision
262005
Author
cdu...@apple.com
Date
2020-05-21 09:12:41 -0700 (Thu, 21 May 2020)

Log Message

Address post review comments from Mitz after r262004.

* Shared/mac/AuxiliaryProcessMac.mm:
(WebKit::sandboxDataVaultParentDirectory):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (262004 => 262005)


--- trunk/Source/WebKit/ChangeLog	2020-05-21 16:08:50 UTC (rev 262004)
+++ trunk/Source/WebKit/ChangeLog	2020-05-21 16:12:41 UTC (rev 262005)
@@ -1,5 +1,12 @@
 2020-05-21  Chris Dumez  <cdu...@apple.com>
 
+        Address post review comments from Mitz after r262004.
+
+        * Shared/mac/AuxiliaryProcessMac.mm:
+        (WebKit::sandboxDataVaultParentDirectory):
+
+2020-05-21  Chris Dumez  <cdu...@apple.com>
+
         [WK2] WebKit abandons compiled sandbox profiles
         https://bugs.webkit.org/show_bug.cgi?id=212177
         <rdar://problem/54613619>

Modified: trunk/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm (262004 => 262005)


--- trunk/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm	2020-05-21 16:08:50 UTC (rev 262004)
+++ trunk/Source/WebKit/Shared/mac/AuxiliaryProcessMac.mm	2020-05-21 16:12:41 UTC (rev 262005)
@@ -261,13 +261,13 @@
     // our sandbox rules or webkit cache directories (rdar://problem/54613619).
     size_t length = confstr(_CS_DARWIN_USER_TEMP_DIR, temp, sizeof(temp));
     if (!length) {
-        WTFLogAlways("%s: Could not retrieve user cache directory path: %s\n", getprogname(), strerror(errno));
+        WTFLogAlways("%s: Could not retrieve user temporary directory path: %s\n", getprogname(), strerror(errno));
         exit(EX_NOPERM);
     }
     RELEASE_ASSERT(length <= sizeof(temp));
     char resolvedPath[PATH_MAX];
     if (!realpath(temp, resolvedPath)) {
-        WTFLogAlways("%s: Could not canonicalize user cache directory path: %s\n", getprogname(), strerror(errno));
+        WTFLogAlways("%s: Could not canonicalize user temporary directory path: %s\n", getprogname(), strerror(errno));
         exit(EX_NOPERM);
     }
     return resolvedPath;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to