summaryrefslogtreecommitdiffstats
path: root/crypto/dh/dh_meth.c
diff options
context:
space:
mode:
authorFdaSilvaYY <fdasilvayy@gmail.com>2016-05-07 18:54:01 +0200
committerMatt Caswell <matt@openssl.org>2016-05-23 13:37:02 +0100
commitaca6dae94b5bb298b05081a876e30370d82e22b5 (patch)
tree3f9a20033ea8404d480f116051c7224a39edac92 /crypto/dh/dh_meth.c
parent7d52e55457eb8e888c3441a5b1de328238a7d9fb (diff)
Remove useless NULL checks
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/dh/dh_meth.c')
-rw-r--r--crypto/dh/dh_meth.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/dh/dh_meth.c b/crypto/dh/dh_meth.c
index afd47aba8a..45753b6164 100644
--- a/crypto/dh/dh_meth.c
+++ b/crypto/dh/dh_meth.c
@@ -31,8 +31,7 @@ DH_METHOD *DH_meth_new(const char *name, int flags)
void DH_meth_free(DH_METHOD *dhm)
{
if (dhm != NULL) {
- if (dhm->name != NULL)
- OPENSSL_free(dhm->name);
+ OPENSSL_free(dhm->name);
OPENSSL_free(dhm);
}
}