Try to convince coverity not to worryh about this loop

This commit is contained in:
Nick Mathewson 2015-07-12 17:00:45 -04:00
parent 920c63877c
commit 7892aff3a8

View File

@ -240,7 +240,8 @@ contract256_window4_modm(signed char r[64], const bignum256modm in) {
static void
contract256_slidingwindow_modm(signed char r[256], const bignum256modm s, int windowsize) {
int i,j,k,b;
int m = (1 << (windowsize - 1)) - 1, soplen = 256;
int m = (1 << (windowsize - 1)) - 1;
const int soplen = 256;
signed char *bits = r;
bignum256modm_element_t v;