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
to_raw_capacity()
I executed fuzz testing on http-0.2.9, and found some arithmetic overflow.
http-0.2.9
#[inline] fn to_raw_capacity(n: usize) -> usize { n + n / 3 // overflow! }
reproduce with :
HeaderMap::<u32>::with_capacity(17798225791641714878); // put some big number here
The text was updated successfully, but these errors were encountered:
with_capacity()
Resolve arith overflow on with_capacity (#628)
b41d0b9
Closes #626 #627
Successfully merging a pull request may close this issue.
I executed fuzz testing on
http-0.2.9
, and found some arithmetic overflow.reproduce with :
The text was updated successfully, but these errors were encountered: