Commit 0342de8e authored by Aaron Hill's avatar Aaron Hill Committed by Alexandre Julliard

crypt32: Add missing 'break' to X509_ECC_SIGNATURE case.

This was accidentally removed as part of commit 5edf6561 Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51501Signed-off-by: 's avatarAaron Hill <aa1ronham@gmail.com> Signed-off-by: 's avatarHans Leidekker <hans@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 2ba8976f
......@@ -6291,6 +6291,7 @@ static CryptDecodeObjectExFunc CRYPT_GetBuiltinDecoder(DWORD dwCertEncodingType,
break;
case LOWORD(X509_ECC_SIGNATURE):
decodeFunc = CRYPT_AsnDecodeEccSignature;
break;
case LOWORD(CNG_RSA_PUBLIC_KEY_BLOB):
decodeFunc = CRYPT_AsnDecodeRsaPubKey_Bcrypt;
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment