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
Rooted::new_unrooted
Rooted::new_unrooted will zero-initialize the contained value (RootedGuard::new will usually be used to init it later)
RootedGuard::new
mozjs/mozjs-sys/src/jsimpls.rs
Lines 431 to 440 in 0081fc4
This causes immediate undefined behaviour (or a panic in debug mode) if T is a type that must not be zero, like std::ptr::NonNull<T>.
T
std::ptr::NonNull<T>
The text was updated successfully, but these errors were encountered:
I think we should wrap the value in std::mem::MaybeUninit.
std::mem::MaybeUninit
Sorry, something went wrong.
This is currently preventing me from implementing the :slotted selector and laying out slot elements in servo
:slotted
Successfully merging a pull request may close this issue.
Rooted::new_unrooted
will zero-initialize the contained value (RootedGuard::new
will usually be used to init it later)mozjs/mozjs-sys/src/jsimpls.rs
Lines 431 to 440 in 0081fc4
This causes immediate undefined behaviour (or a panic in debug mode) if
T
is a type that must not be zero, likestd::ptr::NonNull<T>
.The text was updated successfully, but these errors were encountered: