die() on calloc failure

thanks Markus Teich and David!
main
Hiltjo Posthuma 2016-11-05 11:36:42 +01:00
parent a9a5c6cc2d
commit a280bdad1f
1 changed files with 1 additions and 1 deletions

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;
}