Skip to content
Snippets Groups Projects
Commit b06759ed authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Try to convince coverity not to worry about this loop either

parent 7892aff3
Branches
Tags
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment