mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 12:18:08 +00:00
quickfix for first big bug that use_stdin was not correctly initialized and could not be set
This commit is contained in:
@ -899,11 +899,11 @@ int main(int argc, char** argv, char** envp) {
|
||||
if (in_dir) {
|
||||
|
||||
if (at_file) PFATAL("Options -A and -i are mutually exclusive");
|
||||
detect_file_args(argv + optind, "", fsrv->use_stdin);
|
||||
detect_file_args(argv + optind, "", &fsrv->use_stdin);
|
||||
|
||||
} else {
|
||||
|
||||
detect_file_args(argv + optind, at_file, fsrv->use_stdin);
|
||||
detect_file_args(argv + optind, at_file, &fsrv->use_stdin);
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user