diff options
Diffstat (limited to 'lib/libcrypto/ec/ec2_smpl.c')
-rw-r--r-- | lib/libcrypto/ec/ec2_smpl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/ec/ec2_smpl.c b/lib/libcrypto/ec/ec2_smpl.c index af94458ca7b..03deae66746 100644 --- a/lib/libcrypto/ec/ec2_smpl.c +++ b/lib/libcrypto/ec/ec2_smpl.c @@ -887,7 +887,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) { |