Make DH_free() free up any ex_data and also call the finish method.

This commit is contained in:
Dr. Stephen Henson 1999-09-01 23:50:43 +00:00
parent 2d4287da34
commit ac8b4ee04a

View File

@ -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);