From 308f028e281dd6c7e5b16eea42e07b8e3d58f7ae Mon Sep 17 00:00:00 2001 From: Geoff Thorpe Date: Thu, 22 Nov 2001 09:20:08 +0000 Subject: [PATCH] In this particular error condition, the structural reference wasn't being released. --- apps/apps.c | 1 + 1 file changed, 1 insertion(+) 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; } -- GitLab