summaryrefslogtreecommitdiffstats
path: root/crypto/dh
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2007-04-02 20:29:40 +0000
committerNils Larsch <nils@openssl.org>2007-04-02 20:29:40 +0000
commit442cbb062d82ff95a391946b9a15507df2add87a (patch)
tree4f08111b58026fbdf8ceb6d1c8fc45b0c04e56a2 /crypto/dh
parentc971ca4c86b0a7bb4bb7a7d1a3c183b78dfbf144 (diff)
check correct pointer before freeing it (Coverity CID 79,86)
Diffstat (limited to 'crypto/dh')
-rw-r--r--crypto/dh/dh_ameth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/dh/dh_ameth.c b/crypto/dh/dh_ameth.c
index 0ff0fe7f3b..420cfcda34 100644
--- a/crypto/dh/dh_ameth.c
+++ b/crypto/dh/dh_ameth.c
@@ -117,7 +117,7 @@ static int dh_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey)
return 1;
err:
- if (pubkey)
+ if (public_key)
ASN1_INTEGER_free(public_key);
if (dh)
DH_free(dh);