codeql fix

This commit is contained in:
van Hauser
2021-01-19 10:41:42 +01:00
parent e2d9dc16e3
commit e91f3b0de6
2 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@ sending a mail to <afl-users+subscribe@googlegroups.com>.
for reporting)
- if determinstic mode is active (-D, or -M without -d) then we sync
after every queue entry as this can take very long time otherwise
- better detection if a target needs a large shared map
- switched to a faster RNG
- added hghwng's patch for faster trace map analysis
- afl-cc

View File

@ -424,7 +424,7 @@ u8 calibrate_case(afl_state_t *afl, struct queue_entry *q, u8 *use_mem,
if (unlikely(afl->fixed_seed)) {
diff_us = (afl->fsrv.exec_tmout - 1) * afl->stage_max;
diff_us = (u64)(afl->fsrv.exec_tmout - 1) * (u64)afl->stage_max;
} else {