summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-10-26 16:43:34 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-10-26 16:43:34 +0000
commit32cf5baeae21774db04af2ad2d74567a617c6fec (patch)
tree3bc7eeff56530aed5cef05a0852a3e0619b0aa44
parent45906fe63b350d4271d70771c85fb9a12dd82aa5 (diff)
PR: 2632
Submitted by: emmanuel.azencot@bull.net Reviewed by: steve Return -1 immediately if not affine coordinates as BN_CTX has not been set up.
-rw-r--r--crypto/ec/ec2_smpl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ec/ec2_smpl.c b/crypto/ec/ec2_smpl.c
index f37347b5e1..9a9476f0c1 100644
--- a/crypto/ec/ec2_smpl.c
+++ b/crypto/ec/ec2_smpl.c
@@ -556,7 +556,7 @@ int ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_
field_sqr = group->meth->field_sqr;
/* only support affine coordinates */
- if (!point->Z_is_one) goto err;
+ if (!point->Z_is_one) return -1;
if (ctx == NULL)
{