summaryrefslogtreecommitdiffstats
path: root/crypto/ec/ec2_smpl.c
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2019-03-19 09:58:09 +1000
committerRichard Levitte <levitte@openssl.org>2019-03-19 07:25:48 +0100
commitce1415ed2ce15305356cd028bcf7b9bc688d6d5c (patch)
treee9f4d5ed4bbb781d42b09c6a2c9bebd73fe8917f /crypto/ec/ec2_smpl.c
parent226f2bf191ba8c2b33749ddc80c9ace051bebf80 (diff)
Added NULL check to BN_clear() & BN_CTX_end()
Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/8518)
Diffstat (limited to 'crypto/ec/ec2_smpl.c')
-rw-r--r--crypto/ec/ec2_smpl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/ec/ec2_smpl.c b/crypto/ec/ec2_smpl.c
index 7bd2a63203..ebd6f21eec 100644
--- a/crypto/ec/ec2_smpl.c
+++ b/crypto/ec/ec2_smpl.c
@@ -204,8 +204,7 @@ int ec_GF2m_simple_group_check_discriminant(const EC_GROUP *group,
ret = 1;
err:
- if (ctx != NULL)
- BN_CTX_end(ctx);
+ BN_CTX_end(ctx);
BN_CTX_free(new_ctx);
return ret;
}