We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 Hi, thanks for your time. Our static analyzer finds the PageVec doesn't check for ZST as element.
To Reproduce Please run folloiwng poc:
use memory_pages::PagedVec; #[derive(Debug)] struct A; fn main() { let mut vec = PagedVec::<A>::new(0); vec.reserve(1000); println!("{:?}", vec.len()); }
Expected behavior Program executed and exit with 0.
For crashes Failed to check for ZST, leading to divides by 0 error
OS version N/A
Additional context N/A
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Describe the bug
Hi, thanks for your time. Our static analyzer finds the PageVec doesn't check for ZST as element.
To Reproduce
Please run folloiwng poc:
Expected behavior
Program executed and exit with 0.
For crashes
Failed to check for ZST, leading to divides by 0 error
OS version
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: