mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Fix provided by "cargo clippy --fix" for error:
error: implicitly casting the result of `from_raw_parts_mut` to `*mut [u8]`
--> src/ftp/response.rs:107:31
|
107 | let _ = Box::from_raw(std::slice::from_raw_parts_mut(
| _______________________________^
108 | | response.response,
109 | | response.length,
110 | | ));
| |_________^ help: replace_with: `std::ptr::slice_from_raw_parts_mut(response.response, response.length)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#cast_slice_from_raw_parts
|
4 months ago | |
|---|---|---|
| .. | ||
| constant.rs | 12 months ago | |
| event.rs | 2 years ago | |
| ftp.rs | 10 months ago | |
| mod.rs | 1 year ago | |
| response.rs | 4 months ago | |