X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhn.c;h=685a74e7759ddde5600481a354e7d4a86800ae9a;hp=55f06c4c0a8a20a1d29cb6b720e3aa53ed102e3b;hb=5ff96d61ee5af34956ae958a0bc72ee78734a4d7;hpb=4885712264980e6cbc2039f9158027bee9213475 diff --git a/uip/mhn.c b/uip/mhn.c index 55f06c4..685a74e 100644 --- a/uip/mhn.c +++ b/uip/mhn.c @@ -20,6 +20,7 @@ #include #include #include +#include #ifdef HAVE_SYS_WAIT_H # include @@ -242,8 +243,7 @@ main (int argc, char **argv) */ nummsgs = 0; maxmsgs = MAXMSGS; - if (!(msgs = (char **) malloc ((size_t) (maxmsgs * sizeof(*msgs))))) - adios (NULL, "unable to allocate storage"); + msgs = (char **) mh_xmalloc ((size_t) (maxmsgs * sizeof(*msgs))); /* * Parse arguments @@ -449,9 +449,8 @@ do_cache: */ if (nummsgs >= maxmsgs) { maxmsgs += MAXMSGS; - if (!(msgs = (char **) realloc (msgs, - (size_t) (maxmsgs * sizeof(*msgs))))) - adios (NULL, "unable to reallocate msgs storage"); + msgs = (char **) mh_xrealloc (msgs, + (size_t) (maxmsgs * sizeof(*msgs))); } msgs[nummsgs++] = cp; }