diff options
author | van Hauser <vh@thc.org> | 2020-03-09 19:40:59 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-09 19:40:59 +0100 |
commit | 73a1b39446f604698181add181d2b2489a635333 (patch) | |
tree | de63594f8322d8f3937859b192b88b937a64f65b /src/afl-fuzz.c | |
parent | 253bbf3a5c4323c33952f0408df6afbcd9310603 (diff) | |
download | afl++-73a1b39446f604698181add181d2b2489a635333.tar.gz |
quickfix for first big bug that use_stdin was not correctly initialized and could not be set
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index 35cf582c..4b6ced7a 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -942,7 +942,7 @@ int main(int argc, char** argv, char** envp) { } detect_file_args(argv + optind + 1, afl->fsrv.out_file, - afl->fsrv.use_stdin); + &afl->fsrv.use_stdin); break; } |