rust-fuzz / honggfuzz-rs

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

Allow more closures #8

Closed g2p closed 6 years ago

g2p commented 6 years ago

This allows passing closures that are not unwind-safe. For example, closures that capture mutable references are now allowed.

PaulGrandperrin commented 6 years ago

@g2p, thanks a lot for this work, it really helped me understand what was at stake with this unwind-safety thing! I directly cherry-picked or implemented the ideas from this PR in master, so I'm closing it.

g2p commented 6 years ago

Thank you!