Fix shadowed variable.

This commit is contained in:
Ken MacKay
2014-02-12 21:35:43 -08:00
parent 41071f442e
commit 567e347051
+1 -1
View File
@@ -1585,7 +1585,7 @@ int ecdsa_verify(EccPoint *p_publicKey, uint32_t p_hash[NUM_ECC_DIGITS], uint32_
EccPoint_double_jacobian(rx, ry, z);
int l_index = (!!vli_testBit(u1, i)) | ((!!vli_testBit(u2, i)) << 1);
EccPoint *l_point = l_points[l_index];
l_point = l_points[l_index];
if(l_point)
{
vli_set(tx, l_point->x);