diff options
author | Richard Levitte <levitte@openssl.org> | 2001-06-23 18:31:41 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2001-06-23 18:31:41 +0200 |
commit | 870d986131869300c8510fdba2b4937658f3fa34 (patch) | |
tree | 1d48cf16bdbae95dd92c63ac80e4d4b771293603 /apps/openssl.c | |
parent | Make use of new features in UI's. Among others, the application (diff) | |
download | openssl-870d986131869300c8510fdba2b4937658f3fa34.tar.xz openssl-870d986131869300c8510fdba2b4937658f3fa34.zip |
apps_startup() needs a corresponding apps_shutdown().
Diffstat (limited to '')
-rw-r--r-- | apps/openssl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/openssl.c b/apps/openssl.c index 3b4374a048..22bd52ffed 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -350,7 +350,8 @@ end: ERR_free_strings(); ENGINE_cleanup(); - destroy_ui_method(); + + apps_shutdown(); CRYPTO_mem_leaks(bio_err); if (bio_err != NULL) |