diff options
author | vanhauser-thc <vh@thc.org> | 2024-02-29 14:31:47 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-02-29 14:31:47 +0100 |
commit | 6062668679300af97248a59775cde45537601480 (patch) | |
tree | f478b490405cdc26e67470a2d962fc6180daf09e /src/afl-fuzz-extras.c | |
parent | acc178e5dd572d166404531ebe948c6719299e8b (diff) | |
download | afl++-6062668679300af97248a59775cde45537601480.tar.gz |
fix not using autodict
Diffstat (limited to 'src/afl-fuzz-extras.c')
-rw-r--r-- | src/afl-fuzz-extras.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/afl-fuzz-extras.c b/src/afl-fuzz-extras.c index 5735db0c..c06896ef 100644 --- a/src/afl-fuzz-extras.c +++ b/src/afl-fuzz-extras.c @@ -742,10 +742,10 @@ void save_auto(afl_state_t *afl) { for (i = 0; i < MIN((u32)USE_AUTO_EXTRAS, afl->a_extras_cnt); ++i) { - u8 *fn = - alloc_printf("%s/queue/.state/auto_extras/auto_%06u%s%s", afl->out_dir, i, - afl->file_extension ? "." : "", - afl->file_extension ? (const char*)afl->file_extension : ""); + u8 *fn = alloc_printf( + "%s/queue/.state/auto_extras/auto_%06u%s%s", afl->out_dir, i, + afl->file_extension ? "." : "", + afl->file_extension ? (const char *)afl->file_extension : ""); s32 fd; |