diff options
author | Richard Levitte <levitte@openssl.org> | 2016-09-28 23:39:18 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-10-19 17:44:08 +0200 |
commit | dd1abd4462e4e4fa84b8f8de2ec70375f9b0e191 (patch) | |
tree | 66ed9bf5494cf999e57f754b5fa43ccd51ffc36e /apps/smime.c | |
parent | OpenSSL::Test - small fixup (diff) | |
download | openssl-dd1abd4462e4e4fa84b8f8de2ec70375f9b0e191.tar.xz openssl-dd1abd4462e4e4fa84b8f8de2ec70375f9b0e191.zip |
If an engine comes up explicitely, it must also come down explicitely
In apps/apps.c, one can set up an engine with setup_engine().
However, we freed the structural reference immediately, which means
that for engines that don't already have a structural reference
somewhere else (because it's a built in engine), we end up returning
an invalid reference.
Instead, the function release_engine() is added, and called at the end
of the routines that call setup_engine().
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1643)
Diffstat (limited to 'apps/smime.c')
-rw-r--r-- | apps/smime.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/smime.c b/apps/smime.c index 7696d3b18f..dbafd0f62d 100644 --- a/apps/smime.c +++ b/apps/smime.c @@ -614,6 +614,7 @@ int smime_main(int argc, char **argv) X509_free(signer); EVP_PKEY_free(key); PKCS7_free(p7); + release_engine(e); BIO_free(in); BIO_free(indata); BIO_free_all(out); |