• libafl_frida 0.9.0/src/asan/hook_funcs.rs
    120
        #[inline]
    121
        #[allow(clippy::cmp_null)]
    122
        pub fn hook_realloc(&mut self, ptr: *mut c_void, size: usize) -> *mut c_void {
    140
        #[inline]
    141
        #[allow(clippy::cmp_null)]
    142
        pub fn hook_free(&mut self, ptr: *mut c_void) {
    173
        #[allow(non_snake_case)]
    174
        #[allow(clippy::cmp_null)]
    175
        #[inline]
    182
        #[allow(non_snake_case)]
    183
        #[allow(clippy::cmp_null)]
    184
        #[inline]
    191
        #[allow(non_snake_case)]
    192
        #[allow(clippy::cmp_null)]
    193
        #[inline]
  • mujoco-rust 0.0.4/src/model.rs
    169
            };
    170
            #[allow(clippy::cmp_null)]
    171
            if cstr == std::ptr::null() {
  • tauri-webview2 0.1.2/src/lib.rs
    57
    // Caused by the `com_interface` macro.
    58
    #![allow(clippy::cmp_null)]
    59
    #![allow(clippy::type_complexity)]
  • webview2 0.1.4/src/lib.rs
    57
    // Caused by the `com_interface` macro.
    58
    #![allow(clippy::cmp_null)]
    59
    #![allow(clippy::type_complexity)]
  • winvd 0.0.20/src/changelistener.rs
    1
    // Some reason the co_class macro uses null comparison
    2
    #![allow(clippy::cmp_null)]