(ptr: *const u8)
| 82 | #[no_mangle] |
| 83 | #[inline(never)] |
| 84 | unsafe extern "C" fn liq_received_invalid_pointer(ptr: *const u8) -> bool { |
| 85 | if ptr.is_null() { |
| 86 | return true; |
| 87 | } |
| 88 | let _ = ptr::read_volatile(ptr); |
| 89 | false |
| 90 | } |
| 91 | |
| 92 | macro_rules! bad_object { |
| 93 | ($obj:expr, $tag:expr) => {{ |
no outgoing calls
no test coverage detected