Changeset 250397 in webkit


Ignore:
Timestamp:
Sep 26, 2019 2:36:36 PM (5 years ago)
Author:
jiewen_tan@apple.com
Message:

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

Unreviewed, roll back part of r249737 to confirm the cause.

  • Modules/webauthn/fido/U2fResponseConverter.cpp:

(fido::WebCore::createAttestedCredentialDataFromU2fRegisterResponse):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r250395 r250397  
     12019-09-26  Jiewen Tan  <jiewen_tan@apple.com>
     2
     3        REGRESSION: [ Catalina WK2 ] http/wpt/webauthn/public-key-credential-create-success-u2f.https.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=201620
     5
     6        Unreviewed, roll back part of r249737 to confirm the cause.
     7
     8        * Modules/webauthn/fido/U2fResponseConverter.cpp:
     9        (fido::WebCore::createAttestedCredentialDataFromU2fRegisterResponse):
     10
    1112019-09-26  Truitt Savell  <tsavell@apple.com>
    212
  • trunk/Source/WebCore/Modules/webauthn/fido/U2fResponseConverter.cpp

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