Title: [200460] trunk/Source/WebKit2
Revision
200460
Author
[email protected]
Date
2016-05-05 10:41:11 -0700 (Thu, 05 May 2016)

Log Message

Remove workaround added in r200391 (rdar://problem/25992976)
https://bugs.webkit.org/show_bug.cgi?id=157378
<rdar://problem/26118503>

Reviewed by Anders Carlsson.

Following the fix for <rdar://problem/26075714> we can remove the workaround added in r200391 (rdar://problem/25992976).

* Shared/mac/CodeSigning.mm:
(WebKit::secCodeSigningIdentifier):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (200459 => 200460)


--- trunk/Source/WebKit2/ChangeLog	2016-05-05 17:30:02 UTC (rev 200459)
+++ trunk/Source/WebKit2/ChangeLog	2016-05-05 17:41:11 UTC (rev 200460)
@@ -1,3 +1,16 @@
+2016-05-05  Daniel Bates  <[email protected]>
+
+        Remove workaround added in r200391 (rdar://problem/25992976)
+        https://bugs.webkit.org/show_bug.cgi?id=157378
+        <rdar://problem/26118503>
+
+        Reviewed by Anders Carlsson.
+
+        Following the fix for <rdar://problem/26075714> we can remove the workaround added in r200391 (rdar://problem/25992976).
+
+        * Shared/mac/CodeSigning.mm:
+        (WebKit::secCodeSigningIdentifier):
+
 2016-05-04  Dean Jackson  <[email protected]>
 
         Experimental Features don't need an "Experimental" prefix

Modified: trunk/Source/WebKit2/Shared/mac/CodeSigning.mm (200459 => 200460)


--- trunk/Source/WebKit2/Shared/mac/CodeSigning.mm	2016-05-05 17:30:02 UTC (rev 200459)
+++ trunk/Source/WebKit2/Shared/mac/CodeSigning.mm	2016-05-05 17:41:11 UTC (rev 200460)
@@ -79,11 +79,6 @@
     OSStatus errorCode = SecCodeCheckValidity(code, kSecCSDefaultFlags, signingRequirement.get());
     if (errorCode == errSecCSUnsigned || errorCode == errSecCSReqFailed)
         return String(); // Unsigned or signed by a third-party
-#if USE(APPLE_INTERNAL_SDK)
-    // FIXME: Temporary workaround for <rdar://problem/25992976>. We need to fix <rdar://problem/25697779>.
-    if (errorCode == errSecCSGuestInvalid)
-        return String();
-#endif
     RELEASE_ASSERT_WITH_MESSAGE(!errorCode, "SecCodeCheckValidity() failed with error: %ld", static_cast<long>(errorCode));
     String codeSigningIdentifier;
     RetainPtr<CFDictionaryRef> signingInfo = secCodeSigningInformation(code);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to