Title: [232848] trunk/Source/WebKit
Revision
232848
Author
[email protected]
Date
2018-06-14 12:58:37 -0700 (Thu, 14 Jun 2018)

Log Message

Plug-in Process crashing on Mojave (affects Flash, others)
https://bugs.webkit.org/show_bug.cgi?id=186628
<rdar://problem/41120462>

Reviewed by Eric Carlson.

Add the missing “com.apple.security.cs.allow-unsigned-executable-memory” entitlement. Also alphabetize
the entitlements file to make it easier to read.

* Configurations/PluginService.entitlements:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (232847 => 232848)


--- trunk/Source/WebKit/ChangeLog	2018-06-14 19:16:59 UTC (rev 232847)
+++ trunk/Source/WebKit/ChangeLog	2018-06-14 19:58:37 UTC (rev 232848)
@@ -1,3 +1,16 @@
+2018-06-14  Brent Fulgham  <[email protected]>
+
+        Plug-in Process crashing on Mojave (affects Flash, others)
+        https://bugs.webkit.org/show_bug.cgi?id=186628
+        <rdar://problem/41120462>
+
+        Reviewed by Eric Carlson.
+
+        Add the missing “com.apple.security.cs.allow-unsigned-executable-memory” entitlement. Also alphabetize
+        the entitlements file to make it easier to read.
+
+        * Configurations/PluginService.entitlements:
+
 2018-06-14  Carlos Garcia Campos  <[email protected]>
 
         [GTK][WPE] WebDriver: handle acceptInsecureCertificates capability

Modified: trunk/Source/WebKit/Configurations/PluginService.entitlements (232847 => 232848)


--- trunk/Source/WebKit/Configurations/PluginService.entitlements	2018-06-14 19:16:59 UTC (rev 232847)
+++ trunk/Source/WebKit/Configurations/PluginService.entitlements	2018-06-14 19:58:37 UTC (rev 232848)
@@ -4,11 +4,13 @@
 <dict>
 	<key>com.apple.security.cs.allow-jit</key>
 	<true/>
-	<key>com.apple.security.print</key>
+    <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
+    <true/>
+	<key>com.apple.security.cs.disable-library-validation</key>
 	<true/>
 	<key>com.apple.security.files.user-selected.read-write</key>
 	<true/>
-	<key>com.apple.security.cs.disable-library-validation</key>
+	<key>com.apple.security.print</key>
 	<true/>
 </dict>
 </plist>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to