mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-13 10:38:07 +00:00
Fixed according to CR
This commit is contained in:
@ -573,7 +573,7 @@ void read_afl_environment(afl_state_t *afl, char **envp) {
|
|||||||
|
|
||||||
u64 stats_update_freq_sec =
|
u64 stats_update_freq_sec =
|
||||||
strtoull(get_afl_env(afl_environment_variables[i]), NULL, 0);
|
strtoull(get_afl_env(afl_environment_variables[i]), NULL, 0);
|
||||||
if (ULLONG_MAX == stats_update_freq_sec ||
|
if (stats_update_freq_sec >= UINT_MAX ||
|
||||||
0 == stats_update_freq_sec) {
|
0 == stats_update_freq_sec) {
|
||||||
|
|
||||||
WARNF(
|
WARNF(
|
||||||
|
Reference in New Issue
Block a user