From: Dr. Stephen Henson <steve@openssl.org> Date: Tue, 5 Jul 2016 22:24:26 +0000 (+0100) Subject: Don't indicate errors during initial adb decode. X-Git-Tag: OpenSSL_1_1_0-pre6~265 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b385889640517531a9cfeb672b15db7089b1bbb8;p=oweals%2Fopenssl.git Don't indicate errors during initial adb decode. Reviewed-by: Tim Hudson <tjh@openssl.org> --- diff --git a/crypto/asn1/tasn_dec.c b/crypto/asn1/tasn_dec.c index a1b0e28fe8..3af1d1b801 100644 --- a/crypto/asn1/tasn_dec.c +++ b/crypto/asn1/tasn_dec.c @@ -300,7 +300,7 @@ static int asn1_item_embed_d2i(ASN1_VALUE **pval, const unsigned char **in, if (tt->flags & ASN1_TFLG_ADB_MASK) { const ASN1_TEMPLATE *seqtt; ASN1_VALUE **pseqval; - seqtt = asn1_do_adb(pval, tt, 1); + seqtt = asn1_do_adb(pval, tt, 0); if (seqtt == NULL) continue; pseqval = asn1_get_field_ptr(pval, seqtt);