We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0fb68a commit a3a3e11Copy full SHA for a3a3e11
src/ecmult_const_impl.h
@@ -87,8 +87,6 @@ static void secp256k1_ecmult_const_odd_multiples_table_globalz(secp256k1_ge *pre
87
secp256k1_fe neg_y; \
88
VERIFY_CHECK((n) < (1U << ECMULT_CONST_GROUP_SIZE)); \
89
VERIFY_CHECK(index < (1U << (ECMULT_CONST_GROUP_SIZE - 1))); \
90
- VERIFY_SETUP(secp256k1_fe_clear(&(r)->x)); \
91
- VERIFY_SETUP(secp256k1_fe_clear(&(r)->y)); \
92
/* Unconditionally set r->x = (pre)[m].x. r->y = (pre)[m].y. because it's either the correct one
93
* or will get replaced in the later iterations, this is needed to make sure `r` is initialized. */ \
94
(r)->x = (pre)[m].x; \
0 commit comments