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

Try to convince coverity not to worryh about this loop

parent 920c6387
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment