From 12f14b1d8f996dd5b0ab33e961b28f443ba56d22 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Fri, 19 Sep 2014 18:53:39 +0100 Subject: [PATCH] Fix warning. Reviewed-by: Tim Hudson (cherry picked from commit 16e5b45f72cd69b71ca28e84044d2354e068888c) --- crypto/ec/ecp_nistz256.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crypto/ec/ecp_nistz256.c b/crypto/ec/ecp_nistz256.c index 521e139093..0ff87ff304 100644 --- a/crypto/ec/ecp_nistz256.c +++ b/crypto/ec/ecp_nistz256.c @@ -1074,6 +1074,7 @@ static int ecp_nistz256_points_mul(const EC_GROUP * group, const BIGNUM * scalars[], BN_CTX * ctx) { int i = 0, ret = 0, no_precomp_for_generator = 0, p_is_infinity = 0; + size_t j; unsigned char p_str[33] = { 0 }; const PRECOMP256_ROW *preComputedTable = NULL; const EC_PRE_COMP *pre_comp = NULL; @@ -1095,8 +1096,8 @@ static int ecp_nistz256_points_mul(const EC_GROUP * group, if ((scalar == NULL) && (num == 0)) return EC_POINT_set_to_infinity(group, r); - for (i = 0; i < num; i++) { - if (group->meth != points[i]->meth) { + for (j = 0; j < num; j++) { + if (group->meth != points[j]->meth) { ECerr(EC_F_NISTZ256_POINTS_MUL, EC_R_INCOMPATIBLE_OBJECTS); return 0; } -- 2.34.1