Changeset 200460 in webkit
- Timestamp:
- May 5, 2016, 10:41:11 AM (9 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r200440 r200460 1 2016-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 1 14 2016-05-04 Dean Jackson <dino@apple.com> 2 15 -
trunk/Source/WebKit2/Shared/mac/CodeSigning.mm
r200391 r200460 80 80 if (errorCode == errSecCSUnsigned || errorCode == errSecCSReqFailed) 81 81 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 #endif87 82 RELEASE_ASSERT_WITH_MESSAGE(!errorCode, "SecCodeCheckValidity() failed with error: %ld", static_cast<long>(errorCode)); 88 83 String codeSigningIdentifier;
Note:
See TracChangeset
for help on using the changeset viewer.