diff options
Diffstat (limited to 'src/afl-tmin.c')
-rw-r--r-- | src/afl-tmin.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/afl-tmin.c b/src/afl-tmin.c index 156dc8af..f6878903 100644 --- a/src/afl-tmin.c +++ b/src/afl-tmin.c @@ -903,9 +903,11 @@ static void set_up_environment(void) { } if (qemu_preload) - buf = alloc_printf("%s,LD_PRELOAD=%s,DYLD_INSERT_LIBRARIES=%s", qemu_preload, afl_preload, afl_preload); + buf = alloc_printf("%s,LD_PRELOAD=%s,DYLD_INSERT_LIBRARIES=%s", + qemu_preload, afl_preload, afl_preload); else - buf = alloc_printf("LD_PRELOAD=%s,DYLD_INSERT_LIBRARIES=%s", afl_preload, afl_preload); + buf = alloc_printf("LD_PRELOAD=%s,DYLD_INSERT_LIBRARIES=%s", + afl_preload, afl_preload); setenv("QEMU_SET_ENV", buf, 1); |