-
Notifications
You must be signed in to change notification settings - Fork 27
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
ITCM init #910
Comments
Not only that, but the pointer provenance of the |
Ref rust-embedded/wg#771, it might be the case that pointer provenance is not actually an issue |
Way back I had argued that this is like an FFI interface where one crates slices from addresses and lengths in a similar way without virtual machine knowing much about them. |
Closing as "not a problem". |
As per rust-lang/unsafe-code-guidelines#259 we may want to try using ZSTs for the symbols though. |
stabilizer/src/hardware/setup.rs
Line 183 in 3ef00cb
That destination slice is uninitialized, thus insta-UB. Needs to be
MaybeUninit
.The text was updated successfully, but these errors were encountered: