From f3af0124e4710bbb6e98c0b2e39cd480ffebf6ad Mon Sep 17 00:00:00 2001 From: John Safranek Date: Tue, 25 Jun 2013 13:37:43 -0700 Subject: [PATCH] Fixed DecodeAltNames extension falling through to next case. --- ctaocrypt/src/asn.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ctaocrypt/src/asn.c b/ctaocrypt/src/asn.c index 21d3b9c80..9e77b011c 100644 --- a/ctaocrypt/src/asn.c +++ b/ctaocrypt/src/asn.c @@ -2703,6 +2703,7 @@ static void DecodeCertExtensions(DecodedCert* cert) case ALT_NAMES_OID: DecodeAltNames(&input[idx], length, cert); + break; case AUTH_KEY_OID: DecodeAuthKeyId(&input[idx], length, cert);