2021-07-15 08:44:10 +00:00
|
|
|
error: using `libc::strlen` on a `CString` or `CStr` value
|
2021-11-20 01:02:49 +00:00
|
|
|
--> $DIR/strlen_on_c_strings.rs:12:24
|
2021-07-15 08:44:10 +00:00
|
|
|
|
|
|
|
|
LL | let len = unsafe { libc::strlen(cstring.as_ptr()) };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::strlen-on-c-strings` implied by `-D warnings`
|
|
|
|
help: try this (you might also need to get rid of `unsafe` block in some cases):
|
|
|
|
|
|
|
|
|
LL | let len = unsafe { cstring.as_bytes().len() };
|
2021-08-11 14:21:33 +00:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-07-15 08:44:10 +00:00
|
|
|
|
|
|
|
error: using `libc::strlen` on a `CString` or `CStr` value
|
2021-11-20 01:02:49 +00:00
|
|
|
--> $DIR/strlen_on_c_strings.rs:16:24
|
2021-07-15 08:44:10 +00:00
|
|
|
|
|
|
|
|
LL | let len = unsafe { libc::strlen(cstr.as_ptr()) };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try this (you might also need to get rid of `unsafe` block in some cases):
|
|
|
|
|
|
|
|
|
LL | let len = unsafe { cstr.to_bytes().len() };
|
2021-08-11 14:21:33 +00:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
2021-07-15 08:44:10 +00:00
|
|
|
|
2021-11-20 01:02:49 +00:00
|
|
|
error: using `libc::strlen` on a `CString` or `CStr` value
|
|
|
|
--> $DIR/strlen_on_c_strings.rs:18:24
|
|
|
|
|
|
|
|
|
LL | let len = unsafe { strlen(cstr.as_ptr()) };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: try this (you might also need to get rid of `unsafe` block in some cases):
|
|
|
|
|
|
|
|
|
LL | let len = unsafe { cstr.to_bytes().len() };
|
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2021-07-15 08:44:10 +00:00
|
|
|
|