diff options
author | vanhauser-thc <vh@thc.org> | 2021-03-02 17:46:43 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-03-02 17:46:43 +0100 |
commit | 108e588e888df5c2679600ea49846a565bac23f9 (patch) | |
tree | e99fce6dd06540c8df011f1dcc6aefe556a6e316 /src/afl-fuzz.c | |
parent | 333509bb0a56be9bd2e236f0e2f37d4af2dd7d59 (diff) | |
download | afl++-108e588e888df5c2679600ea49846a565bac23f9.tar.gz |
add de-unicoded dictionary entries
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index a02eadb2..90f77919 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -1449,9 +1449,6 @@ int main(int argc, char **argv_orig, char **envp) { } - dedup_extras(afl); - OKF("Loaded a total of %u extras.", afl->extras_cnt); - } if (!afl->timeout_given) { find_timeout(afl); } // only for resumes! @@ -1681,6 +1678,10 @@ int main(int argc, char **argv_orig, char **envp) { } + deunicode_extras(afl); + dedup_extras(afl); + if (afl->extras_cnt) { OKF("Loaded a total of %u extras.", afl->extras_cnt); } + // after we have the correct bitmap size we can read the bitmap -B option // and set the virgin maps if (afl->in_bitmap) { |