about summary refs log tree commit diff
path: root/src/afl-fuzz-extras.c
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2024-02-29 14:31:47 +0100
committervanhauser-thc <vh@thc.org>2024-02-29 14:31:47 +0100
commit6062668679300af97248a59775cde45537601480 (patch)
treef478b490405cdc26e67470a2d962fc6180daf09e /src/afl-fuzz-extras.c
parentacc178e5dd572d166404531ebe948c6719299e8b (diff)
downloadafl++-6062668679300af97248a59775cde45537601480.tar.gz
fix not using autodict
Diffstat (limited to 'src/afl-fuzz-extras.c')
-rw-r--r--src/afl-fuzz-extras.c8
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;