die() on calloc failure

thanks Markus Teich and David!
This commit is contained in:
Hiltjo Posthuma 2016-11-05 11:34:52 +01:00
parent ab9571bbc5
commit 24849acada

2
util.c
View file

@ -12,7 +12,7 @@ ecalloc(size_t nmemb, size_t size)
void *p;
if (!(p = calloc(nmemb, size)))
perror(NULL);
die("calloc:");
return p;
}