Title: [229342] trunk/Source/WebKit
Revision
229342
Author
ryanhad...@apple.com
Date
2018-03-06 14:41:41 -0800 (Tue, 06 Mar 2018)

Log Message

Unreviewed build fix.

* UIProcess/ios/WKFullScreenWindowControllerIOS.mm:
(-[WKFullScreenWindowController _EVOrganizationName]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (229341 => 229342)


--- trunk/Source/WebKit/ChangeLog	2018-03-06 22:01:27 UTC (rev 229341)
+++ trunk/Source/WebKit/ChangeLog	2018-03-06 22:41:41 UTC (rev 229342)
@@ -1,3 +1,10 @@
+2018-03-06  Ryan Haddad  <ryanhad...@apple.com>
+
+        Unreviewed build fix.
+
+        * UIProcess/ios/WKFullScreenWindowControllerIOS.mm:
+        (-[WKFullScreenWindowController _EVOrganizationName]):
+
 2018-03-06  Antoine Quint  <grao...@apple.com>
 
         [Web Animations] Add a new runtime flag to control whether CSS Animations and CSS Transitions should run using the Web Animations timeline

Modified: trunk/Source/WebKit/UIProcess/ios/WKFullScreenWindowControllerIOS.mm (229341 => 229342)


--- trunk/Source/WebKit/UIProcess/ios/WKFullScreenWindowControllerIOS.mm	2018-03-06 22:01:27 UTC (rev 229341)
+++ trunk/Source/WebKit/UIProcess/ios/WKFullScreenWindowControllerIOS.mm	2018-03-06 22:41:41 UTC (rev 229342)
@@ -573,7 +573,10 @@
     // If SecTrustCopyInfo returned NULL then it's likely that the SecTrustRef has not been evaluated
     // and the only way to get the information we need is to call SecTrustEvaluate ourselves.
     if (!infoDictionary) {
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wnonnull"
         OSStatus err = SecTrustEvaluate(trust, NULL);
+#pragma clang diagnostic pop
         if (err == noErr)
             infoDictionary = [(__bridge NSDictionary *)SecTrustCopyInfo(trust) autorelease];
         if (!infoDictionary)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to