From: Richard Levitte Date: Mon, 25 Jun 2001 08:35:59 +0000 (+0000) Subject: Call apps_shutdown() to take down what apps_startup() set up. X-Git-Tag: OpenSSL_0_9_6c~182^2~71 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=3d5e97f5601b31e36b648fbcf7ea0be7eb0c6356;ds=sidebyside Call apps_shutdown() to take down what apps_startup() set up. --- diff --git a/apps/req.c b/apps/req.c index 2999d509ba..9269aa85ac 100644 --- a/apps/req.c +++ b/apps/req.c @@ -1022,6 +1022,7 @@ end: #ifndef OPENSSL_NO_DSA if (dsa_params != NULL) DSA_free(dsa_params); #endif + apps_shutdown(); EXIT(ex); }