From: Dr. Stephen Henson Date: Wed, 1 Sep 1999 23:50:43 +0000 (+0000) Subject: Make DH_free() free up any ex_data and also call the finish method. X-Git-Tag: OpenSSL_0_9_5beta1~556 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=ac8b4ee04a41f89f59e080ae792fe130574e3f36 Make DH_free() free up any ex_data and also call the finish method. --- diff --git a/crypto/dh/dh_lib.c b/crypto/dh/dh_lib.c index ef622629f7..48b9db2ac0 100644 --- a/crypto/dh/dh_lib.c +++ b/crypto/dh/dh_lib.c @@ -143,6 +143,10 @@ void DH_free(DH *r) } #endif + CRYPTO_free_ex_data(dh_meth, (char *)r, &r->ex_data); + + if(r->meth->finish) r->meth->finish(r); + if (r->p != NULL) BN_clear_free(r->p); if (r->g != NULL) BN_clear_free(r->g); if (r->pub_key != NULL) BN_clear_free(r->pub_key);