Title: [282114] trunk/Source/WebKit
Revision
282114
Author
pvol...@apple.com
Date
2021-09-07 16:32:08 -0700 (Tue, 07 Sep 2021)

Log Message

Fix incorrect preprocess guard in WebContent sandbox
https://bugs.webkit.org/show_bug.cgi?id=230025
<rdar://82721734>

Reviewed by Brent Fulgham.

Fix incorrect macOS version guard.

* WebProcess/com.apple.WebProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (282113 => 282114)


--- trunk/Source/WebKit/ChangeLog	2021-09-07 23:02:45 UTC (rev 282113)
+++ trunk/Source/WebKit/ChangeLog	2021-09-07 23:32:08 UTC (rev 282114)
@@ -1,3 +1,15 @@
+2021-09-07  Per Arne  <pvol...@apple.com>
+
+        Fix incorrect preprocess guard in WebContent sandbox
+        https://bugs.webkit.org/show_bug.cgi?id=230025
+        <rdar://82721734>
+
+        Reviewed by Brent Fulgham.
+
+        Fix incorrect macOS version guard.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2021-09-07  Alex Christensen  <achristen...@webkit.org>
 
         Replace PrivateClickMeasurementNetworkLoader::start with an implementation that doesn't need NetworkSession

Modified: trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (282113 => 282114)


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-09-07 23:02:45 UTC (rev 282113)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-09-07 23:32:08 UTC (rev 282114)
@@ -2035,7 +2035,7 @@
         (syscall-number SYS_kqueue_workloop_ctl) ;; <rdar://problem/50999499>
         (syscall-number SYS_faccessat) ;; <rdar://problem/56690456>
         (syscall-number SYS_fsetxattr) ;; <rdar://problem/56332491>
-#if __MAC_OS_X_VERSION_MIN_REQUIRED > 101500
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
         (syscall-number SYS_ulock_wait2) ;; <rdar://problem/58743778>
 #endif
         (syscall-number SYS_fstat64_extended) ;; <rdar://problem/61310019>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to