[PATCH] crypt32: Add missing 'break' to X509_ECC_SIGNATURE case

Aaron Hill aa1ronham at gmail.com
Sun Jul 25 13:09:42 CDT 2021


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>
---
 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;
-- 
2.32.0




More information about the wine-devel mailing list