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
The fuzzer on 0840723 found this case which doesn't round-trip.
fnmain(){let u = url::Url::parse("p:/.//:/").unwrap();let s = u.as_str();assert_eq!(s,"p://:/");// the `/.` was lost
url::Url::parse("p://:/").unwrap();// which causes this to error}
Also, the fuzzer can be simplified to not need the UTF-8 check by doing
The fuzzer on 0840723 found this case which doesn't round-trip.
Also, the fuzzer can be simplified to not need the UTF-8 check by doing
The text was updated successfully, but these errors were encountered: