]> www.infradead.org Git - mtd-utils.git/commitdiff
mtd-utils: xalloc: simplify/unify error messages
authorMike Frysinger <vapier@gentoo.org>
Fri, 1 Oct 2010 05:45:06 +0000 (01:45 -0400)
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Fri, 1 Oct 2010 06:33:32 +0000 (09:33 +0300)
I'm not sure that if we actually are out of memory that declaring the
failing allocation size is useful in the output.  So use the same
simple string in every error message to cut down on size (there will
only be one copy of this at runtime).  Size is a much more common
concern than handling OOM issues which most likely aren't the fault
of mtd-utils in the first place.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
include/xalloc.h

index 35a94afc20040fc5450a89bf43870775d7f0a4c4..f1cc8d4a1ab7fe5f689a037c9480762f3882e69d 100644 (file)
@@ -41,7 +41,7 @@ static void *xmalloc(size_t size)
        void *ptr = malloc(size);
 
        if (ptr == NULL && size != 0)
-               sys_errmsg_die("malloc(%zu) failed", size);
+               sys_errmsg_die("out of memory");
        return ptr;
 }
 
@@ -51,7 +51,7 @@ static void *xcalloc(size_t nmemb, size_t size)
        void *ptr = calloc(nmemb, size);
 
        if (ptr == NULL && nmemb != 0 && size != 0)
-               sys_errmsg_die("calloc(%zu, %zu) failed", nmemb, size);
+               sys_errmsg_die("out of memory");
        return ptr;
 }
 
@@ -66,7 +66,7 @@ static void *xrealloc(void *ptr, size_t size)
 {
        ptr = realloc(ptr, size);
        if (ptr == NULL && size != 0)
-               sys_errmsg_die("realloc(%p, %zu) failed", ptr, size);
+               sys_errmsg_die("out of memory");
        return ptr;
 }
 
@@ -79,7 +79,7 @@ static char *xstrdup(const char *s)
                return NULL;
        t = strdup(s);
        if (t == NULL)
-               sys_errmsg_die("strdup(%p) failed", s);
+               sys_errmsg_die("out of memory");
        return t;
 }
 
@@ -97,7 +97,7 @@ static int xasprintf(char **strp, const char *fmt, ...)
        va_end(ap);
 
        if (cnt == -1)
-               sys_errmsg_die("asprintf(...) failed");
+               sys_errmsg_die("out of memory");
 
        return cnt;
 }