We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While fuzzing with #660 I discovered this failing input
#[test] fn fuzzer_error() { let parsed = Url::parse("h:/./\r/:").unwrap(); dbg!(&parsed); /* Url { scheme: "h", host: None, port: None, path: "//:", query: None, fragment: None, username: "", password: None, } */ let as_str = parsed.as_str(); dbg!(as_str); // "h://:" // Err(ParseError::EmptyHost) let parsed_again = Url::parse(as_str).unwrap(); assert_eq!(parsed, parsed_again); }
The text was updated successfully, but these errors were encountered:
It looks like this was resolved by #817.
Sorry, something went wrong.
Thanks, @qsantos !
No branches or pull requests
While fuzzing with #660 I discovered this failing input
The text was updated successfully, but these errors were encountered: