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 /include/common.h | |
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 'include/common.h')
-rw-r--r-- | include/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index fc5d3c38..5afc5ee3 100644 --- a/include/common.h +++ b/include/common.h @@ -31,7 +31,7 @@ #include "types.h" #include "stdbool.h" -void detect_file_args(char** argv, u8* prog_in, u8 use_stdin); +void detect_file_args(char** argv, u8* prog_in, u8 *use_stdin); void check_environment_vars(char** env); char** get_qemu_argv(u8* own_loc, u8** target_path_p, int argc, char** argv); |