-
Couldn't load subscription status.
- Fork 13.9k
Fix memory leak in test "mem::uninit_write_slice_cloned_no_drop" #80123
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
Conversation
|
r? @shepmaster (rust-highfive has picked a reviewer for you, use r? to override) |
|
📌 Commit 01f36c5 has been approved by |
…, r=RalfJung Fix memory leak in test "mem::uninit_write_slice_cloned_no_drop" This fixes rust-lang#80116. I replaced the `Rc` based method I was using with a type that panics when dropped.
|
@bors r- Failed on a wasm target: |
|
Fixed that error |
|
@bors r+ |
|
📌 Commit 28e0d2f has been approved by |
…, r=RalfJung Fix memory leak in test "mem::uninit_write_slice_cloned_no_drop" This fixes rust-lang#80116. I replaced the `Rc` based method I was using with a type that panics when dropped.
…, r=RalfJung Fix memory leak in test "mem::uninit_write_slice_cloned_no_drop" This fixes rust-lang#80116. I replaced the `Rc` based method I was using with a type that panics when dropped.
|
☀️ Test successful - checks-actions |
This fixes #80116. I replaced the
Rcbased method I was using with a type that panics when dropped.