From 28c73b34dfe00e786fc9198d89e089655ec5ae01 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 29 May 2018 16:01:30 +0100 Subject: Free a variable Fix a memory leak in storeutl. Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/6373) --- apps/storeutl.c | 1 + 1 file changed, 1 insertion(+) (limited to 'apps/storeutl.c') diff --git a/apps/storeutl.c b/apps/storeutl.c index 0f310d2ec9..50007f6e8b 100644 --- a/apps/storeutl.c +++ b/apps/storeutl.c @@ -308,6 +308,7 @@ int storeutl_main(int argc, char *argv[]) text, noout, recursive, 0, out, prog); end: + OPENSSL_free(fingerprint); OPENSSL_free(alias); ASN1_INTEGER_free(serial); X509_NAME_free(subject); -- cgit v1.2.3