mirror of
https://github.com/kmackay/micro-ecc.git
synced 2026-08-02 16:47:45 +00:00
Fix shadowed variable.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user