commit | 28c73b34dfe00e786fc9198d89e089655ec5ae01 | [log] [tgz] |
---|---|---|
author | Matt Caswell <matt@openssl.org> | Tue May 29 16:01:30 2018 +0100 |
committer | Matt Caswell <matt@openssl.org> | Thu May 31 10:39:13 2018 +0100 |
tree | 1fc3ce654df363540d095be5fc62eb8d5dfe1900 | |
parent | fbccfedf9bb0840e6c2db54b66ac511b85a3f587 [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)
diff --git a/apps/storeutl.c b/apps/storeutl.c index 0f310d2..50007f6 100644 --- a/apps/storeutl.c +++ b/apps/storeutl.c
@@ -308,6 +308,7 @@ text, noout, recursive, 0, out, prog); end: + OPENSSL_free(fingerprint); OPENSSL_free(alias); ASN1_INTEGER_free(serial); X509_NAME_free(subject);