projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d4287d
)
Make DH_free() free up any ex_data and also call the finish method.
author
Dr. Stephen Henson
<steve@openssl.org>
Wed, 1 Sep 1999 23:50:43 +0000
(23:50 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Wed, 1 Sep 1999 23:50:43 +0000
(23:50 +0000)
crypto/dh/dh_lib.c
patch
|
blob
|
history
diff --git
a/crypto/dh/dh_lib.c
b/crypto/dh/dh_lib.c
index ef622629f7ed1541912cc5297c71c63e15b7bb0d..48b9db2ac06996e3d64b0db96ff80b3eef5d59e3 100644
(file)
--- 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);