summaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorNRK <nrk@disroot.org>2022-02-03 09:22:25 +0100
committerN-R-K <79544946+N-R-K@users.noreply.github.com>2022-02-17 07:16:19 +0100
commit48343e99b8bb27fdc7763e521ea7e651ecc7a7ba (patch)
treec541b394ebb9d03d8b51919eb6cadef917a819b3 /util.c
parent9cdeeab9b813a44ac6f23c0494626fa0f0727f42 (diff)
downloadnsxiv-48343e99b8bb27fdc7763e521ea7e651ecc7a7ba.tar.zst
code-style: prefer calloc over malloc+memset
Diffstat (limited to 'util.c')
-rw-r--r--util.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/util.c b/util.c
index 71ff7be..ef0ec43 100644
--- a/util.c
+++ b/util.c
@@ -38,6 +38,16 @@ void* emalloc(size_t size)
return ptr;
}
+void* ecalloc(size_t nmemb, size_t size)
+{
+ void *ptr;
+
+ ptr = calloc(nmemb, size);
+ if (ptr == NULL)
+ error(EXIT_FAILURE, errno, NULL);
+ return ptr;
+}
+
void* erealloc(void *ptr, size_t size)
{
ptr = realloc(ptr, size);