aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-11-05 11:36:42 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-11-05 11:36:42 +0100
commita280bdad1f16943a70eaff086852d3b11043b060 (patch)
tree2bf252af1ed8f39294a7963d29239590a67a8bad
parenta9a5c6cc2d7d55ed7e556a4fe9d75307c6df2e84 (diff)
die() on calloc failure
thanks Markus Teich and David!
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index b0612af..fe044fc 100644
--- a/util.c
+++ b/util.c
@@ -12,7 +12,7 @@ ecalloc(size_t nmemb, size_t size)
12 void *p; 12 void *p;
13 13
14 if (!(p = calloc(nmemb, size))) 14 if (!(p = calloc(nmemb, size)))
15 perror(NULL); 15 die("calloc:");
16 return p; 16 return p;
17} 17}
18 18