rust-fuzz / honggfuzz-rs

Fuzz your Rust code with Google-developed Honggfuzz !
https://crates.io/crates/honggfuzz
Apache License 2.0
448 stars 40 forks source link

fix(build): fix hfuzz_build_args parsing #83

Closed altaua closed 3 months ago

altaua commented 1 year ago

The code searches hfuzz_build_args for any tokens matching "--profile", but it currently does this in a way that fails if any of the contained tokens are shorter than 9 characters. Simplify the check.

PaulGrandperrin commented 3 months ago

Thanks again !