summaryrefslogtreecommitdiffstats
path: root/crypto/rsa
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/rsa
parent7d52e55457eb8e888c3441a5b1de328238a7d9fb (diff)
Remove useless NULL checks
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/rsa')
-rw-r--r--crypto/rsa/rsa_meth.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/rsa/rsa_meth.c b/crypto/rsa/rsa_meth.c
index bce5ee8ba9..ef0dc9751f 100644
--- a/crypto/rsa/rsa_meth.c
+++ b/crypto/rsa/rsa_meth.c
@@ -31,8 +31,7 @@ RSA_METHOD *RSA_meth_new(const char *name, int flags)
void RSA_meth_free(RSA_METHOD *meth)
{
if (meth != NULL) {
- if (meth->name != NULL)
- OPENSSL_free(meth->name);
+ OPENSSL_free(meth->name);
OPENSSL_free(meth);
}
}