]> git.marmaro.de Git - mmh/blobdiff - uip/mhpath.c
* patch #3966: Create a mh_xmalloc function to prevent mistakes when
[mmh] / uip / mhpath.c
index d3dcc675b5a250423b1f6e6e025c97f5c2b905dc..5084b030a8493a6c346fef9ea8f2cd0aa2817bb3 100644 (file)
@@ -10,6 +10,7 @@
  */
 
 #include <h/mh.h>
  */
 
 #include <h/mh.h>
+#include <h/utils.h>
 
 static struct swit switches[] = {
 #define VERSIONSW 0
 
 static struct swit switches[] = {
 #define VERSIONSW 0
@@ -52,8 +53,7 @@ main(int argc, char **argv)
      */
     nummsgs = 0;
     maxmsgs = MAXMSGS;
      */
     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
 
     /*
      * Parse arguments