diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-11-29 23:39:56 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-11-29 23:39:56 +0000 |
commit | 0e35afb5d674efb30b573a01215b9a86196dd772 (patch) | |
tree | c719f7e5ced62e7ee98708b8f14e99074dd3174f | |
parent | cc4c67b060ba2f451356c651f33f81a56035fc7e (diff) | |
download | fetchmail-0e35afb5d674efb30b573a01215b9a86196dd772.tar.gz fetchmail-0e35afb5d674efb30b573a01215b9a86196dd772.tar.bz2 fetchmail-0e35afb5d674efb30b573a01215b9a86196dd772.zip |
Fix core-dump bug.
svn path=/trunk/; revision=2234
-rw-r--r-- | NEWS | 5 | ||||
-rw-r--r-- | driver.c | 6 |
2 files changed, 5 insertions, 6 deletions
@@ -2,6 +2,11 @@ fetchmail-4.6.9 (): * Better RFC822 conformance in fetchmail trace headers. +* Corrected MIME generation of bounce mail. +* Prevent core dumps on 'for' and 'by' embedded in names (bug introduced + in 4.6.8). + +There are 247 people on fetchmail-friends and 309 on fetchmail-announce. fetchmail-4.6.8 (Sat Nov 28 21:07:46 EST 1998): * Added bounce-mail capability on SMTP/ESMTP error conditions. @@ -251,10 +251,7 @@ static char *parse_received(struct query *ctl, char *bufp) if (!(ok = strstr(base, "by"))) break; else if (!isspace(ok[-1]) || !isspace(ok[2])) - { - ok = (char *)NULL; continue; - } else { char *sp, *tp; @@ -302,10 +299,7 @@ static char *parse_received(struct query *ctl, char *bufp) if (!(ok = strstr(base, "for"))) break; else if (!isspace(ok[-1]) || !isspace(ok[3])) - { - ok = (char *)NULL; continue; - } else { char *sp, *tp; |