Cstring from_raw and into_raw safety precisions#72963
Merged
bors merged 2 commits intorust-lang:masterfrom Jun 8, 2020
Merged
Conversation
Contributor
|
r? @dtolnay (rust_highfive has picked a reviewer for you, use r? to override) |
dtolnay
approved these changes
Jun 8, 2020
Member
|
@bors r+ |
Collaborator
|
📌 Commit 87abe17 has been approved by |
Member
|
@bors rollup |
Member
|
I think the canonical way to make a Vec<c_char> in place is: let (ptr, len, cap) = string.into_bytes().into_raw_parts();
let v = unsafe { Vec::from_raw_parts(ptr as *mut c_char, len, cap) }; |
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Jun 8, 2020
Rollup of 10 pull requests Successful merges: - rust-lang#72026 (Update annotate-snippets-rs to 0.8.0) - rust-lang#72583 (impl AsRef<[T]> for vec::IntoIter<T>) - rust-lang#72615 (Fix documentation example for gcov profiling) - rust-lang#72761 (Added the documentation for the 'use' keyword) - rust-lang#72799 (Add `-Z span-debug` to allow for easier debugging of proc macros) - rust-lang#72811 (Liballoc impl) - rust-lang#72963 (Cstring `from_raw` and `into_raw` safety precisions) - rust-lang#73001 (Free `default()` forwarding to `Default::default()`) - rust-lang#73075 (Add comments to `Resolve::get_module`) - rust-lang#73092 (Clean up E0646) Failed merges: r? @ghost
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 free
to 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.
Fixes #48525.
Fixes #68456.
This issue had two points:
from_rawhas been addressed (I hope).into_raw, has only been partially fixed.About
into_raw: the idea was to:I tried making a
Vec<c_char>like suggested but my current solution feels very unsafe and hacky to me (most notably the type cast), I included it here to make it available for discussion: