-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
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
Segfault in safe code via Vec::from_elem. #15123
Comments
This appears to be a bug in jemalloc: extern crate alloc;
fn main() {
unsafe {
println!("{}", alloc::heap::allocate(0 - 1, 8));
}
}
|
Reported as jemalloc/jemalloc#90 |
This is still a segfault in Rust. There are various ways to write it, also |
Quote from jemalloc/jemalloc#90:
So we need to be checking the size for these overflows (I don't know how this can be done properly...). |
The specific issue here is fixed, and I've opened #17207 for the remaining problem. |
Minimal testcase:
The text was updated successfully, but these errors were encountered: