From: Dr. Stephen Henson Date: Wed, 17 May 2006 18:24:35 +0000 (+0000) Subject: Don't try to print PBE information if it can't be decoded. X-Git-Tag: OpenSSL_0_9_8k^2~1316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a263253545a6b576af7cc62e17873c34aa55e1a0;p=openssl Don't try to print PBE information if it can't be decoded. --- diff --git a/apps/pkcs12.c b/apps/pkcs12.c index 781aeb373b..037aa3f011 100644 --- a/apps/pkcs12.c +++ b/apps/pkcs12.c @@ -807,12 +807,14 @@ int alg_print (BIO *x, X509_ALGOR *alg) PBEPARAM *pbe; const unsigned char *p; p = alg->parameter->value.sequence->data; - pbe = d2i_PBEPARAM (NULL, &p, alg->parameter->value.sequence->length); + pbe = d2i_PBEPARAM(NULL, &p, alg->parameter->value.sequence->length); + if (!pbe) + return 1; BIO_printf (bio_err, "%s, Iteration %ld\n", OBJ_nid2ln(OBJ_obj2nid(alg->algorithm)), ASN1_INTEGER_get(pbe->iter)); PBEPARAM_free (pbe); - return 0; + return 1; } /* Load all certificates from a given file */