From 09c1dc850c9f91d41fa2ccfaae59212e32ade4c6 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Tue, 30 Nov 2010 19:37:21 +0000 Subject: [PATCH] PR: 2385 Submitted by: Stefan Birrer Reviewed by: steve Zero key->pkey.ptr after it is freed so the structure can be reused. --- crypto/evp/p_lib.c | 3 +++ 1 file changed, 3 insertions(+) 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) { -- 2.34.1