Uh oh!
There was an error while loading. Please reload this page.
Fix memory leak in test "mem::uninit_write_slice_cloned_no_drop" - #80123
Merged
Conversation
rust-highfive
commented
Dec 17, 2020
Contributor
r? @shepmaster (rust-highfive has picked a reviewer for you, use r? to override) |
RalfJung
commented
Dec 18, 2020
Member
bors
commented
Dec 18, 2020
Collaborator
📌 Commit 01f36c5 has been approved by |
RalfJung added a commit
to RalfJung/rust
that referenced
this pull request
Dec 18, 2020
…, r=RalfJung Fix memory leak in test "mem::uninit_write_slice_cloned_no_drop" This fixesrust-lang#80116. I replaced the `Rc` based method I was using with a type that panics when dropped.
RalfJung
commented
Dec 18, 2020
Member
@bors r- Failed on a wasm target: |
ContributorAuthor
Fixed that error |
RalfJung
commented
Dec 19, 2020
Member
@bors r+ |
bors
commented
Dec 19, 2020
Collaborator
📌 Commit 28e0d2f has been approved by |
Dylan-DPC-zz pushed a commit
to Dylan-DPC-zz/rust
that referenced
this pull request
Dec 20, 2020
…, r=RalfJung Fix memory leak in test "mem::uninit_write_slice_cloned_no_drop" This fixesrust-lang#80116. I replaced the `Rc` based method I was using with a type that panics when dropped.
Dylan-DPC-zz pushed a commit
to Dylan-DPC-zz/rust
that referenced
this pull request
Dec 20, 2020
…, r=RalfJung Fix memory leak in test "mem::uninit_write_slice_cloned_no_drop" This fixesrust-lang#80116. I replaced the `Rc` based method I was using with a type that panics when dropped.
bors
commented
Dec 20, 2020
Collaborator
bors
commented
Dec 20, 2020
Collaborator
☀️ Test successful - checks-actions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This fixes#80116. I replaced the
Rcbased method I was using with a type that panics when dropped.