Skip to content

Commit

Permalink
WIP: attempt to fix GCC uninitialized-use error
Browse files Browse the repository at this point in the history
  • Loading branch information
sipa committed Apr 6, 2024
1 parent 815b241 commit a61f0e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ecmult_gen_compute_table_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ static void secp256k1_ecmult_gen_compute_table(secp256k1_ge_storage* table, cons
secp256k1_gej* vs = checked_malloc(&default_error_callback, points_total * sizeof(*vs));
secp256k1_gej u;
size_t vs_pos = 0;
secp256k1_scalar half;
secp256k1_scalar half = secp256k1_scalar_zero;
int block, i;

/* u is the running power of two times gen we're working with, initially gen/2. */
Expand Down

0 comments on commit a61f0e5

Please sign in to comment.