Fix clippy (#1288)

This commit is contained in:
Dongjia "toka" Zhang 2023-05-22 13:12:43 +02:00 committed by GitHub
parent b9b70b0d51
commit 2be9686a80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 6 deletions

View File

@ -10,7 +10,6 @@
//! On `Unix` systems, the [`Launcher`] will use `fork` if the `fork` feature is used for `LibAFL`.
//! Else, it will start subsequent nodes with the same commandline, and will set special `env` variables accordingly.
#[cfg(all(feature = "std"))]
use alloc::string::ToString;
#[cfg(feature = "std")]
use core::marker::PhantomData;

View File

@ -165,7 +165,7 @@ impl AsanRuntime {
}
#[inline]
#[cfg(all(not(target_vendor = "apple")))]
#[cfg(not(target_vendor = "apple"))]
pub fn hook_malloc_usable_size(&mut self, ptr: *mut c_void) -> usize {
self.allocator_mut().get_usable_size(ptr)
}
@ -583,7 +583,7 @@ impl AsanRuntime {
unsafe { memmem(haystack, haystacklen, needle, needlelen) }
}
#[cfg(all(not(target_os = "android")))]
#[cfg(not(target_os = "android"))]
#[inline]
pub fn hook_bzero(&mut self, s: *mut c_void, n: usize) {
extern "C" {
@ -619,7 +619,7 @@ impl AsanRuntime {
unsafe { explicit_bzero(s, n) }
}
#[cfg(all(not(target_os = "android")))]
#[cfg(not(target_os = "android"))]
#[inline]
pub fn hook_bcmp(&mut self, s1: *const c_void, s2: *const c_void, n: usize) -> i32 {
extern "C" {

View File

@ -32,7 +32,7 @@ use crate::coverage_rt::CoverageRuntime;
#[cfg(unix)]
use crate::{asan::asan_rt::AsanRuntime, drcov_rt::DrCovRuntime};
#[cfg(any(target_vendor = "apple"))]
#[cfg(target_vendor = "apple")]
const ANONYMOUS_FLAG: MapFlags = MapFlags::MAP_ANON;
#[cfg(not(any(target_vendor = "apple", target_os = "windows")))]
const ANONYMOUS_FLAG: MapFlags = MapFlags::MAP_ANONYMOUS;

View File

@ -77,7 +77,7 @@ pub mod windows_hooks;
pub mod coverage_rt;
/// Hooking thread lifecycle events. Seems like this is apple-only for now.
#[cfg(any(target_vendor = "apple"))]
#[cfg(target_vendor = "apple")]
pub mod pthread_hook;
#[cfg(feature = "cmplog")]