diff options
author | Kurt Roeckx <kurt@roeckx.be> | 2014-12-07 22:25:39 +0100 |
---|---|---|
committer | Kurt Roeckx <kurt@roeckx.be> | 2014-12-30 16:46:46 +0100 |
commit | 8c00f4cfd2e4265f39e8fa0e3d10406a542647f0 (patch) | |
tree | 00036196fefbfe4493d588aaf23580268609804d /apps | |
parent | RT3548: Remove unsupported platforms (diff) | |
download | openssl-8c00f4cfd2e4265f39e8fa0e3d10406a542647f0.tar.xz openssl-8c00f4cfd2e4265f39e8fa0e3d10406a542647f0.zip |
Fix memory leak in the apps
The BIO_free() allocated ex_data again that we already freed.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/openssl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/openssl.c b/apps/openssl.c index 71e1e48ece..5372459456 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -435,9 +435,7 @@ end: if (prog != NULL) lh_FUNCTION_free(prog); if (arg.data != NULL) OPENSSL_free(arg.data); - apps_shutdown(); - CRYPTO_mem_leaks(bio_err); if (bio_err != NULL) { BIO_free(bio_err); @@ -450,6 +448,9 @@ end: OPENSSL_free(Argv); } #endif + apps_shutdown(); + CRYPTO_mem_leaks(bio_err); + OPENSSL_EXIT(ret); } |