2017-10-10 04:15:19 +00:00
|
|
|
error: you are getting the inner pointer of a temporary `CString`
|
2019-08-21 05:35:04 +00:00
|
|
|
--> $DIR/cstring.rs:8:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | CString::new("foo").unwrap().as_ptr();
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2019-08-21 05:35:04 +00:00
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/cstring.rs:1:9
|
|
|
|
|
|
|
|
|
LL | #![deny(clippy::temporary_cstring_as_ptr)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-10-06 16:18:06 +00:00
|
|
|
= note: that pointer will be invalid outside this expression
|
2017-10-10 04:15:19 +00:00
|
|
|
help: assign the `CString` to a variable to extend its lifetime
|
2019-08-21 05:35:04 +00:00
|
|
|
--> $DIR/cstring.rs:8:5
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | CString::new("foo").unwrap().as_ptr();
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-10-10 04:15:19 +00:00
|
|
|
|
2019-08-09 05:33:07 +00:00
|
|
|
error: you are getting the inner pointer of a temporary `CString`
|
2019-08-21 05:35:04 +00:00
|
|
|
--> $DIR/cstring.rs:9:5
|
2019-08-09 05:33:07 +00:00
|
|
|
|
|
|
|
|
LL | CString::new("foo").expect("dummy").as_ptr();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: that pointer will be invalid outside this expression
|
|
|
|
help: assign the `CString` to a variable to extend its lifetime
|
2019-08-21 05:35:04 +00:00
|
|
|
--> $DIR/cstring.rs:9:5
|
2019-08-09 05:33:07 +00:00
|
|
|
|
|
|
|
|
LL | CString::new("foo").expect("dummy").as_ptr();
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2019-08-21 05:35:04 +00:00
|
|
|
error: you are getting the inner pointer of a temporary `CString`
|
|
|
|
--> $DIR/cstring.rs:22:22
|
|
|
|
|
|
|
|
|
LL | unsafe { foo(cstr.unwrap().as_ptr()) }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: that pointer will be invalid outside this expression
|
|
|
|
help: assign the `CString` to a variable to extend its lifetime
|
|
|
|
--> $DIR/cstring.rs:22:22
|
|
|
|
|
|
|
|
|
LL | unsafe { foo(cstr.unwrap().as_ptr()) }
|
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|