Changeset 250455 in webkit


Ignore:
Timestamp:
Sep 27, 2019 1:38:25 PM (5 years ago)
Author:
jiewen_tan@apple.com
Message:

Unreviewed, rolling out r250397.

caused failure on iOS 13

Reverted changeset:

"REGRESSION: [ Catalina WK2 ] http/wpt/webauthn/public-key-
credential-create-success-u2f.https.html is failing"
https://bugs.webkit.org/show_bug.cgi?id=201620
https://trac.webkit.org/changeset/250397

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r250441 r250455  
     12019-09-27  Jiewen Tan  <jiewen_tan@apple.com>
     2
     3        Unreviewed, rolling out r250397.
     4
     5        caused failure on iOS 13
     6
     7        Reverted changeset:
     8
     9        "REGRESSION: [ Catalina WK2 ] http/wpt/webauthn/public-key-
     10        credential-create-success-u2f.https.html is failing"
     11        https://bugs.webkit.org/show_bug.cgi?id=201620
     12        https://trac.webkit.org/changeset/250397
     13
    1142019-09-27  Jer Noble  <jer.noble@apple.com>
    215
  • trunk/Source/WebCore/Modules/webauthn/fido/U2fResponseConverter.cpp

    r250397 r250455  
    9999        return { };
    100100
    101     Vector<uint8_t> aaguid(aaguidLength, 0);
     101    Vector<uint8_t> aaguid(aaguidLength);
     102    memset(aaguid.data(), 0, aaguidLength);
    102103    return buildAttestedCredentialData(aaguid, credentialId, publicKey);
    103104}
Note: See TracChangeset for help on using the changeset viewer.