From 21425195009e4daf6971453f8a0be08375ae9eec Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 29 May 2015 09:14:03 +0200 Subject: [PATCH] Fix double BIO_free in req Reviewed-by: Tim Hudson --- apps/req.c | 1 + 1 file changed, 1 insertion(+) 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"); } -- 2.40.0