X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Futils.c;h=b0e8274f2a0dde220ca3058c3f6b5064ada32047;hp=515c9a08154145717082d8645aae5c5098cf6f26;hb=72795bfcbe9f7fee8927b1a4942c0230b0f857a8;hpb=5086954856e7b078981418d4aac233d37deb72bd diff --git a/sbr/utils.c b/sbr/utils.c index 515c9a0..b0e8274 100644 --- a/sbr/utils.c +++ b/sbr/utils.c @@ -49,7 +49,7 @@ mh_xrealloc(void *ptr, size_t size) /* Some non-POSIX realloc()s don't cope with realloc(NULL,sz) */ if (!ptr) { - return mh_xmalloc(size); + return mh_xcalloc((size_t) 1, size); } if (size == 0) @@ -63,6 +63,24 @@ mh_xrealloc(void *ptr, size_t size) } /* + * Safely call calloc + */ +void * +mh_xcalloc(size_t nmemb, size_t size) +{ + void *memory; + + if (nmemb == 0 || size == 0) + adios(EX_SOFTWARE, NULL, "Tried to calloc 0 bytes"); + + if ((memory = calloc(nmemb, size))) { + return memory; + } else { + adios(EX_OSERR, NULL, "calloc failed"); + } +} + +/* ** Return the present working directory, if the current directory does not ** exist, or is too long, make / the pwd. */