From ac8b4ee04a41f89f59e080ae792fe130574e3f36 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Wed, 1 Sep 1999 23:50:43 +0000 Subject: [PATCH] Make DH_free() free up any ex_data and also call the finish method. --- crypto/dh/dh_lib.c | 4 ++++ 1 file changed, 4 insertions(+) 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); -- 2.34.1