X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Fmhbuildsbr.c;h=64ec8a6800b66b07608a8ec8a2e4f4df8f8ff803;hb=59a210325d70e6a38c0ef9e5dcb105cec8bd38d2;hp=7e805654e432625f8f974f5f6a4750d3a47bff75;hpb=8563731b02ce9d750806f6b1769af8b399d964e8;p=mmh diff --git a/uip/mhbuildsbr.c b/uip/mhbuildsbr.c index 7e80565..64ec8a6 100644 --- a/uip/mhbuildsbr.c +++ b/uip/mhbuildsbr.c @@ -3,6 +3,10 @@ * mhbuildsbr.c -- routines to expand/translate MIME composition files * * $Id$ + * + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ /* @@ -19,10 +23,11 @@ #include #include #include -#include -#include +#include +#include #include #include +#include #ifdef TIME_WITH_SYS_TIME # include @@ -40,8 +45,6 @@ #endif -extern int errno; - extern int debugsw; extern int verbosw; @@ -783,8 +786,7 @@ add_header (CT ct, char *name, char *value) HF hp; /* allocate header field structure */ - if (!(hp = malloc (sizeof(*hp)))) - adios (NULL, "out of memory"); + hp = mh_xmalloc (sizeof(*hp)); /* link data into header structure */ hp->name = name; @@ -1551,8 +1553,7 @@ invalid_param: goto no_body; } - if ((e->eb_body = bp = malloc ((unsigned) size)) == NULL) - adios (NULL, "out of memory"); + e->eb_body = bp = mh_xmalloc ((unsigned) size); fseek (p->c_fp, p->c_begin, SEEK_SET); while (size > 0) switch (cc = fread (bp, sizeof(*bp), size, p->c_fp)) {