From 0342de8e4d8a646d2b858cccdbf95bf68c6b32b0 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Sun, 25 Jul 2021 13:09:42 -0500 Subject: [PATCH] crypt32: Add missing 'break' to X509_ECC_SIGNATURE case. This was accidentally removed as part of commit 5edf65616a8dcbf5988bbabe0493827d9e125fc3 Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51501 Signed-off-by: Aaron Hill Signed-off-by: Hans Leidekker Signed-off-by: Alexandre Julliard --- dlls/crypt32/decode.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/crypt32/decode.c b/dlls/crypt32/decode.c index 08b07efdbe6..6873cebeae4 100644 --- a/dlls/crypt32/decode.c +++ b/dlls/crypt32/decode.c @@ -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;