Skip to content

Commit

Permalink
remove argument from fuzzing script
Browse files Browse the repository at this point in the history
  • Loading branch information
Tmonster committed Jul 12, 2024
1 parent a7d940f commit 84832cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run_fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def run_shell_command(cmd):
with open(complete_log_file, 'r') as f:
all_queries = f.read()

(stdout, stderr, returncode) = run_shell_command(load_script + '\n' + all_queries, True)
(stdout, stderr, returncode) = run_shell_command(load_script + '\n' + all_queries)
if returncode == 0:
print("Failed to reproduce the issue...")
exit(0)
Expand Down

0 comments on commit 84832cf

Please sign in to comment.