Changeset 199542 in webkit


Ignore:
Timestamp:
Apr 14, 2016, 10:48:17 AM (9 years ago)
Author:
bshafiei@apple.com
Message:

Merged r199528. rdar://problem/25697779

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  
     12016-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
    1202016-04-13  Babak Shafiei  <bshafiei@apple.com>
    221
  • tags/Safari-602.1.28/Source/WebKit2/Shared/mac/CodeSigning.mm

    r199509 r199542  
    5656        return nullptr;
    5757    }
    58     RELEASE_ASSERT(!SecCodeCopyGuestWithAttributes(nullptr, attributes.get(), kSecCSDefaultFlags, &code));
    5958    return adoptCF(code);
    6059}
Note: See TracChangeset for help on using the changeset viewer.