From: Dr. Stephen Henson Date: Wed, 11 Mar 2015 23:30:52 +0000 (+0000) Subject: ASN.1 print fix. X-Git-Tag: OpenSSL_1_1_0-pre1~1548 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=5dc1247a7494f50c88ce7492518bbe0ce6f124fa ASN.1 print fix. When printing out an ASN.1 structure if the type is an item template don't fall thru and attempt to interpret as a primitive type. Reviewed-by: Andy Polyakov --- diff --git a/crypto/asn1/tasn_prn.c b/crypto/asn1/tasn_prn.c index 2626de9728..d8450b39b0 100644 --- a/crypto/asn1/tasn_prn.c +++ b/crypto/asn1/tasn_prn.c @@ -220,6 +220,7 @@ static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, if (!asn1_template_print_ctx(out, fld, indent, it->templates, pctx)) return 0; + break; } /* fall thru */ case ASN1_ITYPE_MSTRING: