Fixed slight logic error to find the uuencode begin line. Fixes bug
2002-01-16 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-filter-basic.c (filter): Fixed slight logic error to find the uuencode begin line. Fixes bug #18754. svn path=/trunk/; revision=15346
This commit is contained in:

committed by
Jeffrey Stedfast

parent
94848b9a22
commit
8759025291
@ -1,3 +1,8 @@
|
||||
2002-01-16 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
* camel-mime-filter-basic.c (filter): Fixed slight logic error to
|
||||
find the uuencode begin line. Fixes bug #18754.
|
||||
|
||||
2002-01-15 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
* providers/smtp/camel-smtp-transport.c (smtp_send_to): Updated to
|
||||
|
@ -2,6 +2,7 @@
|
||||
* Copyright (C) 2000 Ximian Inc.
|
||||
*
|
||||
* Authors: Michael Zucchi <notzed@ximian.com>
|
||||
* Jeffrey Stedfast <fejj@ximian.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of version 2 of the GNU General Public
|
||||
@ -221,7 +222,7 @@ filter(CamelMimeFilter *mf, char *in, size_t len, size_t prespace, char **out, s
|
||||
}
|
||||
|
||||
/* go to the next line */
|
||||
for (inptr++; inptr < inend && *inptr != '\n'; inptr++);
|
||||
for ( ; inptr < inend && *inptr != '\n'; inptr++);
|
||||
|
||||
if (inptr < inend)
|
||||
inptr++;
|
||||
|
Reference in New Issue
Block a user