From 3d64992b7f89644f095caf9f5c946399b9dfcb3d Mon Sep 17 00:00:00 2001 From: toka Date: Thu, 12 Oct 2023 20:22:43 +0200 Subject: [PATCH] FMT --- fuzzers/libafl/fuzzer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzzers/libafl/fuzzer.py b/fuzzers/libafl/fuzzer.py index 52cb1a2e5..cfd2a64d7 100755 --- a/fuzzers/libafl/fuzzer.py +++ b/fuzzers/libafl/fuzzer.py @@ -66,6 +66,6 @@ def fuzz(input_corpus, output_corpus, target_binary): command += (['-x', dictionary_path]) command += (['-o', output_corpus, '-i', input_corpus]) fuzzer_env = os.environ.copy() - fuzzer_env['LD_PRELOAD']='/usr/lib/x86_64-linux-gnu/libjemalloc.so.2' + fuzzer_env['LD_PRELOAD'] = '/usr/lib/x86_64-linux-gnu/libjemalloc.so.2' print(command) subprocess.check_call(command, cwd=os.environ['OUT'], env=fuzzer_env)