Skip to content
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

Can cast an unusable value to a raw pointer #20791

Closed
wthrowe opened this issue Jan 9, 2015 · 6 comments · Fixed by #24191
Closed

Can cast an unusable value to a raw pointer #20791

wthrowe opened this issue Jan 9, 2015 · 6 comments · Fixed by #24191
Assignees
Labels
A-type-system Area: Type system P-medium Medium priority
Milestone

Comments

@wthrowe
Copy link
Contributor

wthrowe commented Jan 9, 2015

fn main() {
    let x: &i32;
    //x; // error: use of possibly uninitialized variable: `x`
    println!("{:?}", x as *const _);
}

This is accepted and prints 0x0 everywhere I've tested (rustc 0.13.0-dev (496dc4e) and the playpen). A similar access is allowed to moved values and mutably borrowed values.

I assume I should not be able to access uninitialized values without some unsafe code, although I am new to the language and might be missing something.

@Thiez
Copy link
Contributor

Thiez commented Jan 9, 2015

You assumption is correct, the reference explicitly defines this as unsafe, see the 4th rule here.

@kmcallister
Copy link
Contributor

Nice catch! Nominating.

@nikomatsakis
Copy link
Contributor

Weird. Perhaps an oversight in the EUV?

@brson brson removed the I-nominated label Jan 15, 2015
@nikomatsakis
Copy link
Contributor

cc me

@brson brson added this to the 1.0 milestone Jan 15, 2015
@brson brson added the P-medium Medium priority label Jan 15, 2015
@kmcallister
Copy link
Contributor

Still compiles successfully (I made a minor rustup edit). Closed by mistake?

rustc 1.0.0-dev (8160fc4 2015-01-22 16:50:17 +0000)

@kmcallister kmcallister reopened this Jan 22, 2015
@nikomatsakis
Copy link
Contributor

Um, it appears I got confused -- I added a run-pass test ;)

@nikomatsakis nikomatsakis self-assigned this Apr 2, 2015
Manishearth added a commit to Manishearth/rust that referenced this issue Apr 9, 2015
 Modify the ExprUseVisitor to walk each part of an AutoRef, and in
particular to treat an AutoUnsize as as kind of \"instantaneous\" borrow
of the value being unsized. This prevents us from feeding uninitialized
data.

This caused a problem for the eager reborrow of comparison traits,
because that wound up introducing a \"double AutoRef\", which was not
being thoroughly checked before but turned out not to type check.
Fortunately, we can just remove that \"eager reborrow\" as it is no longer
needed now that `PartialEq` doesn't force both LHS and RHS to have the
same type (and even if we did have this problem, the better way would be
to lean on introducing a common supertype).

Fixes rust-lang#20791.

r? @nrc
Manishearth added a commit to Manishearth/rust that referenced this issue Apr 9, 2015
 Modify the ExprUseVisitor to walk each part of an AutoRef, and in
particular to treat an AutoUnsize as as kind of \"instantaneous\" borrow
of the value being unsized. This prevents us from feeding uninitialized
data.

This caused a problem for the eager reborrow of comparison traits,
because that wound up introducing a \"double AutoRef\", which was not
being thoroughly checked before but turned out not to type check.
Fortunately, we can just remove that \"eager reborrow\" as it is no longer
needed now that `PartialEq` doesn't force both LHS and RHS to have the
same type (and even if we did have this problem, the better way would be
to lean on introducing a common supertype).

Fixes rust-lang#20791.

r? @nrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-type-system Area: Type system P-medium Medium priority
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants