Changeset 199542 in webkit
- Timestamp:
- Apr 14, 2016, 10:48:17 AM (9 years ago)
- Location:
- tags/Safari-602.1.28/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/Safari-602.1.28/Source/WebKit2/ChangeLog
r199509 r199542 1 2016-04-14 Babak Shafiei <bshafiei@apple.com> 2 3 Merge r199528. 4 5 2016-04-13 Daniel Bates <dabates@apple.com> 6 7 REGRESSION (r199401): Internal builds of Safari hang on launch 8 https://bugs.webkit.org/show_bug.cgi?id=156545 9 <rdar://problem/25697779> 10 11 As pointed out by Darin Adler, remove RELEASE_ASSERT() that I inadvertently left in 12 WebCore::secCodeForProcess() as part of r199504. For now, we handle 13 SecCodeCopyGuestWithAttributes() returning an error. In a subsequent commit we will 14 look to re-introduce the use of a RELEASE_ASSERT() to enforce the invariant that 15 SecCodeCopyGuestWithAttributes() returns a success status. 16 17 * Shared/mac/CodeSigning.mm: 18 (WebKit::secCodeForProcess): 19 1 20 2016-04-13 Babak Shafiei <bshafiei@apple.com> 2 21 -
tags/Safari-602.1.28/Source/WebKit2/Shared/mac/CodeSigning.mm
r199509 r199542 56 56 return nullptr; 57 57 } 58 RELEASE_ASSERT(!SecCodeCopyGuestWithAttributes(nullptr, attributes.get(), kSecCSDefaultFlags, &code));59 58 return adoptCF(code); 60 59 }
Note:
See TracChangeset
for help on using the changeset viewer.