Title: [279476] trunk/Source/WebKit
Revision
279476
Author
pvol...@apple.com
Date
2021-07-01 11:52:04 -0700 (Thu, 01 Jul 2021)

Log Message

[macOS] Fix sandbox violations related to IOKit filtering
https://bugs.webkit.org/show_bug.cgi?id=227572
<rdar://78354215>

Reviewed by Brent Fulgham.

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

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (279475 => 279476)


--- trunk/Source/WebKit/ChangeLog	2021-07-01 18:34:39 UTC (rev 279475)
+++ trunk/Source/WebKit/ChangeLog	2021-07-01 18:52:04 UTC (rev 279476)
@@ -1,3 +1,13 @@
+2021-07-01  Per Arne  <pvol...@apple.com>
+
+        [macOS] Fix sandbox violations related to IOKit filtering
+        https://bugs.webkit.org/show_bug.cgi?id=227572
+        <rdar://78354215>
+
+        Reviewed by Brent Fulgham.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2021-07-01  Aditya Keerthi  <akeer...@apple.com>
 
         [iOS] <select> menus should scroll to the selected option

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


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-07-01 18:34:39 UTC (rev 279475)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-07-01 18:52:04 UTC (rev 279476)
@@ -119,7 +119,7 @@
             iokit-external-method
         )
         (allow iokit-async-external-method
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000 && __MAC_OS_X_VERSION_MIN_REQUIRED < 130000
             (iokit-method-number
                 0
                 47
@@ -127,7 +127,7 @@
 #endif
         )
         (allow iokit-external-method
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000 && __MAC_OS_X_VERSION_MIN_REQUIRED < 130000
             (iokit-method-number
                 0
                 1
@@ -173,7 +173,7 @@
             )
 #endif
         )
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000 && __MAC_OS_X_VERSION_MIN_REQUIRED < 130000
         (if (equal? (param "CPU") "arm64")
             (allow iokit-external-method
                 (iokit-method-number
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to