X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Frmm.c;h=b9fd80dcfa9bec7f77251b0038e04bfbdc1f745f;hp=072097a7949b3f6781555f3175aaeabe953f6a90;hb=1bb1f6c3f38b05060bf699ea2743f7386889bf63;hpb=a259594cc41e41bfbb90562d3977b8194d1446f5 diff --git a/uip/rmm.c b/uip/rmm.c index 072097a..b9fd80d 100644 --- a/uip/rmm.c +++ b/uip/rmm.c @@ -10,6 +10,7 @@ */ #include +#include /* * We allocate space for message names and ranges @@ -56,8 +57,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 */ while ((cp = *argp++)) { @@ -98,9 +98,8 @@ main (int argc, char **argv) */ 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; }