Try to convince coverity not to worry about this loop either

This commit is contained in:
Nick Mathewson 2015-07-12 17:01:17 -04:00
parent 7892aff3a8
commit b06759edfd

View File

@ -334,7 +334,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;