X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=lib%2Fxmalloc.c;h=e7541bddeefb4f40f72eae67da7670a735470a1e;hp=204469f240ab7a67a48f92bdbe3e2ed92aafec61;hb=912e7e968f4888d62b3c620893a70e825599973b;hpb=1243156a5e03a666b36bc4400f1402243a85c9a7 diff --git a/lib/xmalloc.c b/lib/xmalloc.c index 204469f2..e7541bdd 100644 --- a/lib/xmalloc.c +++ b/lib/xmalloc.c @@ -20,6 +20,8 @@ #endif #include +#include +#include #if STDC_HEADERS # include @@ -30,16 +32,7 @@ void *realloc (); void free (); #endif -#if ENABLE_NLS -# include -# define _(Text) gettext (Text) -#else -# define textdomain(Domain) -# define _(Text) Text -#endif -#define N_(Text) Text - -#include "error.h" +#include "gettext.h" #include "xalloc.h" #ifndef EXIT_FAILURE @@ -54,11 +47,11 @@ void *xrealloc (void *p, size_t n); #endif #ifndef HAVE_DONE_WORKING_MALLOC_CHECK -you must run the autoconf test for a properly working malloc -- see malloc.m4 +#error you must run the autoconf test for a properly working malloc -- see malloc.m4 #endif #ifndef HAVE_DONE_WORKING_REALLOC_CHECK -you must run the autoconf test for a properly working realloc -- see realloc.m4 +#error you must run the autoconf test for a properly working realloc -- see realloc.m4 #endif /* Exit value when the requested amount of memory is not available. @@ -69,20 +62,15 @@ int xalloc_exit_failure = EXIT_FAILURE; char *const xalloc_msg_memory_exhausted = N_("Memory exhausted"); /* FIXME: describe */ -void (*xalloc_fail_func) () = 0; - -#if __STDC__ && (HAVE_VPRINTF || HAVE_DOPRNT) -void error (int, int, const char *, ...); -#else -void error (); -#endif +void (*xalloc_fail_func) (int) = 0; static void -xalloc_fail () +xalloc_fail (int size) { if (xalloc_fail_func) - (*xalloc_fail_func) (); - error (xalloc_exit_failure, 0, xalloc_msg_memory_exhausted); + (*xalloc_fail_func) (size); + fprintf(stderr, "%s\n", xalloc_msg_memory_exhausted); + exit(xalloc_exit_failure); } /* Allocate N bytes of memory dynamically, with error checking. */ @@ -95,7 +83,22 @@ xmalloc (n) p = malloc (n); if (p == 0) - xalloc_fail (); + xalloc_fail ((int)n); + return p; +} + +/* Allocate N bytes of memory dynamically, and set it all to zero. */ + +void * +xmalloc_and_zero (n) + size_t n; +{ + void *p; + + p = malloc (n); + if (p == 0) + xalloc_fail ((int)n); + memset (p, '\0', n); return p; } @@ -110,7 +113,19 @@ xrealloc (p, n) { p = realloc (p, n); if (p == 0) - xalloc_fail (); + xalloc_fail (n); + return p; +} + +/* Duplicate a string */ + +char *xstrdup(const char *s) +{ + char *p; + + p = strdup(s); + if(!p) + xalloc_fail ((int)strlen(s)); return p; }