2021-07-15 03:44:10 -05:00
|
|
|
error: using `libc::strlen` on a `CString` or `CStr` value
|
|
|
|
--> $DIR/strlen_on_c_strings.rs:11:24
|
|
|
|
|
|
|
|
|
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 09:21:33 -05:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~
|
2021-07-15 03:44:10 -05:00
|
|
|
|
|
|
|
error: using `libc::strlen` on a `CString` or `CStr` value
|
|
|
|
--> $DIR/strlen_on_c_strings.rs:15:24
|
|
|
|
|
|
|
|
|
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 09:21:33 -05:00
|
|
|
| ~~~~~~~~~~~~~~~~~~~~~
|
2021-07-15 03:44:10 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|