Title: [229433] tags/Safari-606.1.8/Source/WebKit
Revision
229433
Author
[email protected]
Date
2018-03-08 13:55:37 -0800 (Thu, 08 Mar 2018)

Log Message

Cherry-pick r229386. rdar://problem/38191574

Modified Paths

Diff

Modified: tags/Safari-606.1.8/Source/WebKit/ChangeLog (229432 => 229433)


--- tags/Safari-606.1.8/Source/WebKit/ChangeLog	2018-03-08 21:44:52 UTC (rev 229432)
+++ tags/Safari-606.1.8/Source/WebKit/ChangeLog	2018-03-08 21:55:37 UTC (rev 229433)
@@ -1,3 +1,21 @@
+2018-03-07  Kocsen Chung  <[email protected]>
+
+        Cherry-pick r229386. rdar://problem/38191574
+
+    2018-03-07  Brent Fulgham  <[email protected]>
+
+            REGRESSION (r229093): Media playback on Facebook and Hulu require mDNSResponder access
+            https://bugs.webkit.org/show_bug.cgi?id=183421
+            <rdar://problem/38191574>
+
+            Reviewed by Dean Jackson.
+
+            CoreMedia fails to properly play back media on Facebook and Hulu if access to the
+            mDNSResponder is blocked by the sandbox. This Bug unblocks that access while we
+            investigate the underlying issue.
+
+            * WebProcess/com.apple.WebProcess.sb.in:
+
 2018-03-07  Alejandro G. Castro  <[email protected]>
 
         Make NetworkRTCResolver port agnostic

Modified: tags/Safari-606.1.8/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (229432 => 229433)


--- tags/Safari-606.1.8/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2018-03-08 21:44:52 UTC (rev 229432)
+++ tags/Safari-606.1.8/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2018-03-08 21:55:37 UTC (rev 229433)
@@ -628,11 +628,13 @@
 ;; Networking
 #if __MAC_OS_X_VERSION_MIN_REQUIRED < 101300
 (system-network)
+#endif
 (allow network-outbound
        ;; Local mDNSResponder for DNS, arbitrary outbound TCP
+       ;; Note: This is needed for some media playback features. <rdar://problem/38191574>
+       ;; Remove this permission when <rdar://problem/38240572> is fixed.
        (literal "/private/var/run/mDNSResponder")
        (remote tcp))
-#endif
 
 #if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300
 ;; CFNetwork
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to