util/dump.c: Allow NULL ptr if size is zero

This commit is contained in:
Tau 2019-05-09 16:49:00 -04:00
parent 036730840d
commit 649e7d2b4e
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ void dump(const void *ptr, size_t nbytes)
size_t i;
size_t j;
assert(ptr != NULL);
assert(ptr != NULL || nbytes == 0);
if (nbytes == 0) {
dprintf("\t--- Empty ---\n");