You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've using afl.rs to fuzz this crate. And I found a panic issue in VersionReq. The code to replay the issue is
let _ = semver::VersionReq::parse("80000000000000000000");
And from the panic reportn, it seems that this panic is caused by use unwrap on a Result which may return err.
I hope you can check if this is a bug need to be fixed. Thanks a lot.
The text was updated successfully, but these errors were encountered:
I've using afl.rs to fuzz this crate. And I found a panic issue in VersionReq. The code to replay the issue is
And from the panic reportn, it seems that this panic is caused by use unwrap on a Result which may return err.
I hope you can check if this is a bug need to be fixed. Thanks a lot.
The text was updated successfully, but these errors were encountered: