You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #109944 - cjgillot:lint-cstring-macro, r=Nilstrieb
Do not suppress temporary_cstring_as_ptr in macros.
There isn't really a reason to skip the lint when part of the expression comes from an expansion.
Fixes#94694
Copy file name to clipboardexpand all lines: tests/ui/lint/lint-temporary-cstring-as-ptr.stderr
+17-2
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
error: getting the inner pointer of a temporary `CString`
2
-
--> $DIR/lint-temporary-cstring-as-ptr.rs:7:48
2
+
--> $DIR/lint-temporary-cstring-as-ptr.rs:14:48
3
3
|
4
4
LL | let s = CString::new("some text").unwrap().as_ptr();
5
5
| ---------------------------------- ^^^^^^ this pointer will be invalid
@@ -14,5 +14,20 @@ note: the lint level is defined here
14
14
LL | #![deny(temporary_cstring_as_ptr)]
15
15
| ^^^^^^^^^^^^^^^^^^^^^^^^
16
16
17
-
error: aborting due to previous error
17
+
error: getting the inner pointer of a temporary `CString`
18
+
--> $DIR/lint-temporary-cstring-as-ptr.rs:8:52
19
+
|
20
+
LL | let s = CString::new("some text").unwrap().as_ptr();
21
+
| ---------------------------------- ^^^^^^ this pointer will be invalid
22
+
| |
23
+
| this `CString` is deallocated at the end of the statement, bind it to a variable to extend its lifetime
24
+
...
25
+
LL | mymacro!();
26
+
| ---------- in this macro invocation
27
+
|
28
+
= note: pointers do not have a lifetime; when calling `as_ptr` the `CString` will be deallocated at the end of the statement because nothing is referencing it as far as the type system is concerned
29
+
= help: for more information, see https://doc.rust-lang.org/reference/destructors.html
30
+
= note: this error originates in the macro `mymacro` (in Nightly builds, run with -Z macro-backtrace for more info)
0 commit comments