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:
79e2e92
)
Fix memory leak
author
Kurt Roeckx
<kurt@roeckx.be>
Sat, 21 Feb 2015 13:51:50 +0000
(14:51 +0100)
committer
Kurt Roeckx
<kurt@roeckx.be>
Sun, 22 Feb 2015 12:23:53 +0000
(13:23 +0100)
Reviewed-by: Matt Caswell <matt@openssl.org>
(cherry picked from commit
edac5dc220d494dff7ee259dfd84335ffa50e938
)
crypto/dh/dh_ameth.c
patch
|
blob
|
history
diff --git
a/crypto/dh/dh_ameth.c
b/crypto/dh/dh_ameth.c
index 533080aeeb7aac1eda56c8d3edca6bdd6c001f39..f32d3769e207743c354ae21451cf690b662f1a55 100644
(file)
--- a/
crypto/dh/dh_ameth.c
+++ b/
crypto/dh/dh_ameth.c
@@
-248,6
+248,7
@@
static int dh_priv_decode(EVP_PKEY *pkey, PKCS8_PRIV_KEY_INFO *p8)
DHerr(DH_F_DH_PRIV_DECODE, EVP_R_DECODE_ERROR);
dherr:
DH_free(dh);
+ ASN1_INTEGER_free(privkey);
return 0;
}