X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Freplsbr.c;h=244fdc93246620c086c9561e3426857d03e5f3f6;hp=a7616d353f269b4ae25cbde0bd18286c675d34c7;hb=008837e090c008e3afe7a9c8667070bafa091e62;hpb=19b47ea980a98d01112d4bda1d220c7057818ff1 diff --git a/uip/replsbr.c b/uip/replsbr.c index a7616d3..244fdc9 100644 --- a/uip/replsbr.c +++ b/uip/replsbr.c @@ -12,7 +12,9 @@ #include #include #include +#include #include /* L_SET */ +#include extern short ccto; /* from repl.c */ extern short cccc; @@ -103,8 +105,7 @@ replout (FILE *inb, char *msg, char *drft, struct msgs *mp, int outputlinelen, *--savecomp = NULL; /* point at zero'd end minus 1 */ for (i = ncomps; i--; ) - if (!(*nxtbuf++ = malloc(SBUFSIZ))) - adios (NULL, "unable to allocate component buffer"); + *nxtbuf++ = mh_xmalloc(SBUFSIZ); nxtbuf = compbuffers; /* point at start */ tmpbuf = *nxtbuf++; @@ -229,7 +230,7 @@ finished: } } i = format_len + char_read + 256; - scanl = malloc ((size_t) i + 2); + scanl = mh_xmalloc ((size_t) i + 2); dat[0] = 0; dat[1] = 0; dat[2] = 0; @@ -247,12 +248,17 @@ finished: * or add mhn directives */ if (filter) { + fflush(out); + if (ferror (out)) + adios (drft, "error writing"); + replfilter (inb, out, filter); } else if (mime && mp) { fprintf (out, "#forw [original message] +%s %s\n", mp->foldpath, m_name (mp->lowsel)); } + fflush(out); if (ferror (out)) adios (drft, "error writing"); fclose (out); @@ -285,11 +291,9 @@ static unsigned int bufsiz=0; /* current size of buf */ int i = dst - buf;\ int n = last_dst - buf;\ bufsiz += ((dst + len - bufend) / BUFINCR + 1) * BUFINCR;\ - buf = realloc (buf, bufsiz);\ + buf = mh_xrealloc (buf, bufsiz);\ dst = buf + i;\ last_dst = buf + n;\ - if (! buf)\ - adios (NULL, "formataddr: couldn't get buffer space");\ bufend = buf + bufsiz;\ } @@ -318,9 +322,7 @@ formataddr (char *orig, char *str) /* if we don't have a buffer yet, get one */ if (bufsiz == 0) { - buf = malloc (BUFINCR); - if (! buf) - adios (NULL, "formataddr: couldn't allocate buffer space"); + buf = mh_xmalloc (BUFINCR); last_dst = buf; /* XXX */ bufsiz = BUFINCR - 6; /* leave some slop */ bufend = buf + bufsiz; @@ -412,6 +414,8 @@ insert (struct mailname *np) /* * Call the mhlproc + * + * This function expects that argument out has been fflushed by the caller. */ static void @@ -419,6 +423,7 @@ replfilter (FILE *in, FILE *out, char *filter) { int pid; char *mhl; + char *errstr; if (filter == NULL) return; @@ -430,7 +435,6 @@ replfilter (FILE *in, FILE *out, char *filter) rewind (in); lseek (fileno(in), (off_t) 0, SEEK_SET); - fflush (out); switch (pid = vfork ()) { case NOTOK: @@ -442,8 +446,12 @@ replfilter (FILE *in, FILE *out, char *filter) closefds (3); execlp (mhlproc, mhl, "-form", filter, "-noclear", NULL); - fprintf (stderr, "unable to exec "); - perror (mhlproc); + errstr = strerror(errno); + write(2, "unable to exec ", 15); + write(2, mhlproc, strlen(mhlproc)); + write(2, ": ", 2); + write(2, errstr, strlen(errstr)); + write(2, "\n", 1); _exit (-1); default: