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
Describe the bug A clear and concise description of what the bug is. Include code snippets if possible.
This is the version of url:
[dependencies] url = "=2.3.1"
This is the code that trigger bugs:
fn main() { let s1 = "fIlE:p:?../"; let s2 = "../"; let url = url::Url::parse(s1).unwrap(); let _ = url::Url::join(&url, s2); }
Run this code, we will get the error message below:
thread 'main' panicked at 'assertion failed: self.serialization.as_bytes()[segment_start - 1] == b\'/\'', /home/yxz/.cargo/registry/src/mirrors.ustc.edu.cn-61ef6e0cd06fb9b8/url-2.3.1/src/parser.rs:1227:21
The text was updated successfully, but these errors were encountered:
Auto merge of #839 - servo:fix-838, r=Manishearth
c055413
Fix issues with file drives Fixes #838
1b79622
Successfully merging a pull request may close this issue.
Describe the bug
A clear and concise description of what the bug is. Include code snippets if possible.
This is the version of url:
This is the code that trigger bugs:
Run this code, we will get the error message below:
The text was updated successfully, but these errors were encountered: