mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
16 lines
530 B
Text
16 lines
530 B
Text
error: you are getting the inner pointer of a temporary `CString`
|
|
--> $DIR/cstring.rs:7:5
|
|
|
|
|
7 | CString::new("foo").unwrap().as_ptr();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: #[deny(temporary_cstring_as_ptr)] on by default
|
|
= note: that pointer will be invalid outside this expression
|
|
help: assign the `CString` to a variable to extend its lifetime
|
|
--> $DIR/cstring.rs:7:5
|
|
|
|
|
7 | CString::new("foo").unwrap().as_ptr();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|