From: Geoff Thorpe Date: Thu, 22 Nov 2001 09:20:08 +0000 (+0000) Subject: In this particular error condition, the structural reference wasn't being X-Git-Tag: OpenSSL_0_9_6c~26^2~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=308f028e281dd6c7e5b16eea42e07b8e3d58f7ae;p=oweals%2Fopenssl.git In this particular error condition, the structural reference wasn't being released. --- diff --git a/apps/apps.c b/apps/apps.c index 666a7a7000..dc89fc0a81 100644 --- a/apps/apps.c +++ b/apps/apps.c @@ -1242,6 +1242,7 @@ ENGINE *setup_engine(BIO *err, const char *engine, int debug) { BIO_printf(err,"can't use that engine\n"); ERR_print_errors(err); + ENGINE_free(e); return NULL; }