Skip to content

Commit 9645dca

Browse files
authored
Fixed libafl_atheris Makefile and flag read (#1499)
1 parent 2076fc0 commit 9645dca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fuzzers/libafl_atheris/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ fuzzer: target/release/libafl_atheris.a atheris env
3232
)
3333

3434
clean:
35-
rm env
35+
rm -rf env
3636

3737
env:
3838
python3 -m venv env

fuzzers/libafl_atheris/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ pub extern "C" fn LLVMFuzzerRunDriver(
170170
.get_one::<String>("remote_broker_addr")
171171
.map(|s| s.parse().expect("Invalid broker address"));
172172
let input_dirs: Vec<PathBuf> = matches
173-
.get_many::<PathBuf>("input")
173+
.get_many::<String>("input")
174174
.map(|v| v.map(PathBuf::from).collect())
175175
.unwrap_or_default();
176176
let output_dir = matches

0 commit comments

Comments
 (0)