Skip to content

fix: Vec leak when capacity is 0 #95699

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 3 commits into from
Apr 6, 2022
Merged

fix: Vec leak when capacity is 0 #95699

merged 3 commits into from
Apr 6, 2022

Conversation

SparkyPotato
Copy link
Contributor

@SparkyPotato SparkyPotato commented Apr 5, 2022

When RawVec::with_capacity_in is called with capacity 0, an allocation of size 0 is allocated.
However, <RawVec as Drop>::drop doesn't deallocate, since it only checks if capacity was 0. Fixed by not allocating when capacity is 0.

@rust-highfive
Copy link
Contributor

Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @dtolnay (or someone else) soon.

Please see the contribution instructions for more information.

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Apr 5, 2022
Copy link
Member

@dtolnay dtolnay left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@dtolnay
Copy link
Member

dtolnay commented Apr 5, 2022

@bors r+

@bors
Copy link
Collaborator

bors commented Apr 5, 2022

📌 Commit 83f659b has been approved by dtolnay

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Apr 5, 2022
@dtolnay dtolnay added the T-libs Relevant to the library team, which will review and decide on the PR/issue. label Apr 5, 2022
bors added a commit to rust-lang-ci/rust that referenced this pull request Apr 6, 2022
Rollup of 4 pull requests

Successful merges:

 - rust-lang#95659 (Rely on #[link] attribute for unwind on Fuchsia.)
 - rust-lang#95684 (rustdoc: Fix item info display overflow)
 - rust-lang#95693 (interp: pass TyCtxt to Machine methods that do not take InterpCx)
 - rust-lang#95699 (fix: Vec leak when capacity is 0)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup
@bors bors merged commit b452749 into rust-lang:master Apr 6, 2022
@rustbot rustbot added this to the 1.62.0 milestone Apr 6, 2022
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants