summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-11-30 19:37:33 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-11-30 19:37:33 +0000
commit00daa2e6c61954b6e6abca0bc4d42300c2359f7e (patch)
treee819f86a2e60bd51c7bbc136c34d8023154f3756
parent000f221d604b6687dc9914c53a130d0bb0cd5743 (diff)
PR: 2385
Submitted by: Stefan Birrer <stefan.birrer@adnovum.ch> Reviewed by: steve Zero key->pkey.ptr after it is freed so the structure can be reused.
-rw-r--r--crypto/evp/p_lib.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/crypto/evp/p_lib.c b/crypto/evp/p_lib.c
index 1916c61699..e26ccd0d08 100644
--- a/crypto/evp/p_lib.c
+++ b/crypto/evp/p_lib.c
@@ -411,7 +411,10 @@ void EVP_PKEY_free(EVP_PKEY *x)
static void EVP_PKEY_free_it(EVP_PKEY *x)
{
if (x->ameth && x->ameth->pkey_free)
+ {
x->ameth->pkey_free(x);
+ x->pkey.ptr = NULL;
+ }
#ifndef OPENSSL_NO_ENGINE
if (x->engine)
{