blob: c3fa9973e762a8dacf9d620c513187c8521eeea1 [file] [log] [blame]
use std::ptr;
// null is explicitly called out as UB in the C docs for `memset`.
fn main() {
unsafe {
libc::memset(ptr::null_mut(), 0, 0); //~ERROR: null pointer
}
}