diff options
author | van Hauser <vh@thc.org> | 2020-09-04 17:04:42 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-09-04 17:04:42 +0200 |
commit | 6c715f1a69f91d4336023a8ba10fb4a7e126f9c2 (patch) | |
tree | 2b19a7d912fde4936b4cc9cfe279a8858c0738f0 /src/afl-fuzz.c | |
parent | fc19aa96f78cd33ce7d548bad5c7e4d3efa069d1 (diff) | |
download | afl++-6c715f1a69f91d4336023a8ba10fb4a7e126f9c2.tar.gz |
more changes to fuzzer_setup
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index e9ea8b62..c12d5db5 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -1128,6 +1128,8 @@ int main(int argc, char **argv_orig, char **envp) { setup_custom_mutators(afl); + write_setup_file(afl, argc, argv); + setup_cmdline_file(afl, argv + optind); read_testcases(afl); @@ -1274,7 +1276,6 @@ int main(int argc, char **argv_orig, char **envp) { seek_to = find_start_position(afl); - write_fuzzer_config_file(afl); write_stats_file(afl, 0, 0, 0); maybe_update_plot_file(afl, 0, 0); save_auto(afl); |