In this particular error condition, the structural reference wasn't being

released.
This commit is contained in:
Geoff Thorpe 2001-11-22 09:20:08 +00:00
parent e4a6cf421a
commit 308f028e28

View file

@ -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;
}