mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 12:18:08 +00:00
silence some clang warnings
This commit is contained in:
@ -569,6 +569,8 @@ int main(int argc, char **argv_orig, char **envp) {
|
||||
if (mem_limit_given) FATAL("Multiple -m options not supported");
|
||||
mem_limit_given = 1;
|
||||
|
||||
if (!optarg) FATAL("Wrong usage of -m");
|
||||
|
||||
if (!strcmp(optarg, "none")) {
|
||||
|
||||
fsrv->mem_limit = 0;
|
||||
@ -612,6 +614,8 @@ int main(int argc, char **argv_orig, char **envp) {
|
||||
if (timeout_given) FATAL("Multiple -t options not supported");
|
||||
timeout_given = 1;
|
||||
|
||||
if (!optarg) FATAL("Wrong usage of -t");
|
||||
|
||||
if (strcmp(optarg, "none")) {
|
||||
|
||||
fsrv->exec_tmout = atoi(optarg);
|
||||
|
Reference in New Issue
Block a user