Title: [252333] trunk/Source/WebKit
Revision
252333
Author
pvol...@apple.com
Date
2019-11-11 10:38:50 -0800 (Mon, 11 Nov 2019)

Log Message

[iOS] Unable to view .pages files
https://bugs.webkit.org/show_bug.cgi?id=204076
<rdar://problem/57079557>

Reviewed by Brent Fulgham.

This is caused by a syscall being blocked by the sandbox. The syscall was previously unused in the
WebContent process.

* Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (252332 => 252333)


--- trunk/Source/WebKit/ChangeLog	2019-11-11 18:28:29 UTC (rev 252332)
+++ trunk/Source/WebKit/ChangeLog	2019-11-11 18:38:50 UTC (rev 252333)
@@ -1,3 +1,16 @@
+2019-11-11  Per Arne Vollan  <pvol...@apple.com>
+
+        [iOS] Unable to view .pages files
+        https://bugs.webkit.org/show_bug.cgi?id=204076
+        <rdar://problem/57079557>
+
+        Reviewed by Brent Fulgham.
+
+        This is caused by a syscall being blocked by the sandbox. The syscall was previously unused in the
+        WebContent process.
+       
+        * Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
+
 2019-11-11  Carlos Garcia Campos  <cgar...@igalia.com>
 
         WebDriver: implement proxy support

Modified: trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb (252332 => 252333)


--- trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2019-11-11 18:28:29 UTC (rev 252332)
+++ trunk/Source/WebKit/Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb	2019-11-11 18:38:50 UTC (rev 252333)
@@ -1129,5 +1129,6 @@
         (syscall-number SYS_kqueue) ;; <rdar://problem/49609201>
         (syscall-number SYS_kqueue_workloop_ctl) ;; <rdar://problem/50999499>
         (syscall-number SYS_psynch_rw_rdlock) ;; <rdar://problem/51134351>
+        (syscall-number SYS_faccessat) ;; <rdar://problem/56998930>
     )
 )
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to