mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 11:08:06 +00:00
codeql fix
This commit is contained in:
@ -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
|
||||
|
@ -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 {
|
||||
|
||||
|
Reference in New Issue
Block a user