Changeset 200460 in webkit


Ignore:
Timestamp:
May 5, 2016, 10:41:11 AM (9 years ago)
Author:
dbates@webkit.org
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):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r200440 r200460  
     12016-05-05  Daniel Bates  <dabates@apple.com>
     2
     3        Remove workaround added in r200391 (rdar://problem/25992976)
     4        https://bugs.webkit.org/show_bug.cgi?id=157378
     5        <rdar://problem/26118503>
     6
     7        Reviewed by Anders Carlsson.
     8
     9        Following the fix for <rdar://problem/26075714> we can remove the workaround added in r200391 (rdar://problem/25992976).
     10
     11        * Shared/mac/CodeSigning.mm:
     12        (WebKit::secCodeSigningIdentifier):
     13
    1142016-05-04  Dean Jackson  <dino@apple.com>
    215
  • trunk/Source/WebKit2/Shared/mac/CodeSigning.mm

    r200391 r200460  
    8080    if (errorCode == errSecCSUnsigned || errorCode == errSecCSReqFailed)
    8181        return String(); // Unsigned or signed by a third-party
    82 #if USE(APPLE_INTERNAL_SDK)
    83     // FIXME: Temporary workaround for <rdar://problem/25992976>. We need to fix <rdar://problem/25697779>.
    84     if (errorCode == errSecCSGuestInvalid)
    85         return String();
    86 #endif
    8782    RELEASE_ASSERT_WITH_MESSAGE(!errorCode, "SecCodeCheckValidity() failed with error: %ld", static_cast<long>(errorCode));
    8883    String codeSigningIdentifier;
Note: See TracChangeset for help on using the changeset viewer.