mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Try to convince coverity not to worry about this loop either
This commit is contained in:
parent
7892aff3a8
commit
b06759edfd
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user