ZPW: zero page write

A ZPW message indicates that your program is about to write to the zeroth page of memory—store to a bad pointer. An SEGV signal can result.

A ZPW error can be caused by a failure to check the return status for a function expected to return a pointer to a structure or an object. If the function returns NULL on failure, writing to a structure field of the NULL pointer leads to a ZPW error.