summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2018-07-24 15:48:15 +0200
committerAndy Polyakov <appro@openssl.org>2018-07-25 15:45:18 +0200
commit7b953da40d0dee56f360902f872dc8989f6a3e1f (patch)
treeb551cb5dd2faa8e01eeef0bf541dfb46a8d2fd3a
parentd6b50b6e2ebc0c198877b5c56ae0a54cb9036088 (diff)
downloadopenssl-new-7b953da40d0dee56f360902f872dc8989f6a3e1f.tar.gz
ec/ecp_nistz256.c: fix Coverity nit.
|ctx| recently became unconditionally non-NULL and is already dereferenced earlier. Reviewed-by: Rich Salz <rsalz@openssl.org>
-rw-r--r--crypto/ec/ecp_nistz256.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/ec/ecp_nistz256.c b/crypto/ec/ecp_nistz256.c
index 54c9ed2808..b0564bdbd0 100644
--- a/crypto/ec/ecp_nistz256.c
+++ b/crypto/ec/ecp_nistz256.c
@@ -1339,8 +1339,7 @@ __owur static int ecp_nistz256_points_mul(const EC_GROUP *group,
ret = 1;
err:
- if (ctx)
- BN_CTX_end(ctx);
+ BN_CTX_end(ctx);
OPENSSL_free(new_points);
OPENSSL_free(new_scalars);
return ret;