Skip to content

Commit

Permalink
avoid stupid compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
45264 committed Nov 16, 2001
1 parent 033c51f commit e71adb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/ec/ec_mult.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static signed char *compute_wNAF(const BIGNUM *scalar, int w, size_t *ret_len, B
signed char *r = NULL;
int sign = 1;
int bit, next_bit, mask;
size_t len, j;
size_t len = 0, j;

BN_CTX_start(ctx);
c = BN_CTX_get(ctx);
Expand Down

0 comments on commit e71adb8

Please sign in to comment.