Aaron Hill : crypt32: Add missing 'break' to X509_ECC_SIGNATURE case.

Alexandre Julliard julliard at winehq.org
Mon Jul 26 15:30:27 CDT 2021


Module: wine
Branch: master
Commit: 0342de8e4d8a646d2b858cccdbf95bf68c6b32b0
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=0342de8e4d8a646d2b858cccdbf95bf68c6b32b0

Author: Aaron Hill <aa1ronham at gmail.com>
Date:   Sun Jul 25 13:09:42 2021 -0500

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 <aa1ronham at gmail.com>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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;




More information about the wine-cvs mailing list