summaryrefslogtreecommitdiffstats
path: root/apps/storeutl.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2018-05-29 16:01:30 +0100
committerMatt Caswell <matt@openssl.org>2018-05-31 10:39:13 +0100
commit28c73b34dfe00e786fc9198d89e089655ec5ae01 (patch)
tree1fc3ce654df363540d095be5fc62eb8d5dfe1900 /apps/storeutl.c
parentfbccfedf9bb0840e6c2db54b66ac511b85a3f587 (diff)
Free a variable
Fix a memory leak in storeutl. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6373)
Diffstat (limited to 'apps/storeutl.c')
-rw-r--r--apps/storeutl.c1
1 files changed, 1 insertions, 0 deletions
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);