From: Dr. Stephen Henson Date: Wed, 25 May 2011 15:05:56 +0000 (+0000) Subject: PR: 2527 X-Git-Tag: OpenSSL_1_0_1-beta1~298 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=565c15363c0530f890f58283e5a43dbfe17ea7fd;p=oweals%2Fopenssl.git PR: 2527 Submitted by: Marcus Meissner Reviewed by: steve Set cnf to NULL to avoid possible double free. --- diff --git a/apps/asn1pars.c b/apps/asn1pars.c index b5d65e725b..0d6607071f 100644 --- a/apps/asn1pars.c +++ b/apps/asn1pars.c @@ -408,6 +408,7 @@ static int do_generate(BIO *bio, char *genstr, char *genconf, BUF_MEM *buf) atyp = ASN1_generate_nconf(genstr, cnf); NCONF_free(cnf); + cnf = NULL; if (!atyp) return -1;