From: Richard Levitte Date: Fri, 29 May 2015 07:14:03 +0000 (+0200) Subject: Fix double BIO_free in req X-Git-Tag: OpenSSL_1_1_0-pre1~1057 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=21425195009e4daf6971453f8a0be08375ae9eec;p=openssl Fix double BIO_free in req Reviewed-by: Tim Hudson --- diff --git a/apps/req.c b/apps/req.c index a0e0cc905a..a4cf3125f9 100644 --- a/apps/req.c +++ b/apps/req.c @@ -591,6 +591,7 @@ int req_main(int argc, char **argv) goto end; } BIO_free(out); + out = NULL; BIO_printf(bio_err, "-----\n"); }