Fix ecc_25519_gf_is_zero

This commit is contained in:
Matthias Schiffer 2012-12-09 03:55:33 +01:00
parent d072ec9de1
commit c6f33a891f

View file

@ -61,7 +61,7 @@ static void select(unsigned char out[32], const unsigned char r[32], const unsig
int ecc_25519_gf_is_zero(const ecc_int_256 *in) {
int i;
ecc_int_256 r;
unsigned int bits;
unsigned int bits = 0;
ecc_25519_gf_reduce(&r, in);