summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorMartin Vejnar <Martin.Vejnar@avg.com>2015-07-29 17:28:19 -0400
committerRich Salz <rsalz@openssl.org>2015-07-29 21:21:00 -0400
commitfa4629b6a2518d202fd051f228c3d8770682b3be (patch)
treed1cb36bd96dd241f7dddec8a3f1f3ef9822236b8 /crypto
parent5bb17d1b3cb1a02d1e48ad0810105f1b501b0532 (diff)
RT3774: double-free in DSA
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/dsa/dsa_ameth.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/dsa/dsa_ameth.c b/crypto/dsa/dsa_ameth.c
index 73dd158cee..0002e0810e 100644
--- a/crypto/dsa/dsa_ameth.c
+++ b/crypto/dsa/dsa_ameth.c
@@ -321,6 +321,7 @@ static int dsa_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
dplen = i2d_ASN1_INTEGER(prkey, &dp);
ASN1_STRING_clear_free(prkey);
+ prkey = NULL;
if (!PKCS8_pkey_set0(p8, OBJ_nid2obj(NID_dsa), 0,
V_ASN1_SEQUENCE, params, dp, dplen))