Make sure we're not using an uninitialized variable in secp256k1_wnaf_const(...):
In file included from src/secp256k1.c:15:0,
from src/tests.c:17:
src/ecmult_const_impl.h: In function ‘secp256k1_wnaf_const’:
src/ecmult_const_impl.h:117:20: warning: ‘u’ may be used uninitialized in this function [-Wmaybe-uninitialized]
wnaf[word] = u * global_sign;
^
Note to reviewers: Perhaps an assert(…); is a bit drastic. What would be a more graceful way to handle this? :-)