Changeset 229386 in webkit


Ignore:
Timestamp:
Mar 7, 2018 4:39:19 PM (6 years ago)
Author:
Brent Fulgham
Message:

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:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r229382 r229386  
     12018-03-07  Brent Fulgham  <bfulgham@apple.com>
     2
     3        REGRESSION (r229093): Media playback on Facebook and Hulu require mDNSResponder access
     4        https://bugs.webkit.org/show_bug.cgi?id=183421
     5        <rdar://problem/38191574>
     6
     7        Reviewed by Dean Jackson.
     8
     9        CoreMedia fails to properly play back media on Facebook and Hulu if access to the
     10        mDNSResponder is blocked by the sandbox. This Bug unblocks that access while we
     11        investigate the underlying issue.
     12
     13        * WebProcess/com.apple.WebProcess.sb.in:
     14
    1152018-03-07  Dean Jackson  <dino@apple.com>
    216
  • trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in

    r229175 r229386  
    629629#if __MAC_OS_X_VERSION_MIN_REQUIRED < 101300
    630630(system-network)
     631#endif
    631632(allow network-outbound
    632633       ;; Local mDNSResponder for DNS, arbitrary outbound TCP
     634       ;; Note: This is needed for some media playback features. <rdar://problem/38191574>
     635       ;; Remove this permission when <rdar://problem/38240572> is fixed.
    633636       (literal "/private/var/run/mDNSResponder")
    634637       (remote tcp))
    635 #endif
    636638
    637639#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101300
Note: See TracChangeset for help on using the changeset viewer.