mirror of
https://github.com/openwrt/packages.git
synced 2025-12-22 01:44:32 +04:00
uw-imap: add uw-imap toolkit, prereq for php7-mod-imap
most patches are added from Fedora Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
This commit is contained in:
13
libs/uw-imap/patches/003-imap-2007e-overflow.patch
Normal file
13
libs/uw-imap/patches/003-imap-2007e-overflow.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
diff -up imap-2007e/src/c-client/rfc822.c.overflow imap-2007e/src/c-client/rfc822.c
|
||||
--- imap-2007e/src/c-client/rfc822.c.overflow 2008-12-12 11:08:26.000000000 -0600
|
||||
+++ imap-2007e/src/c-client/rfc822.c 2009-07-07 19:27:20.057772757 -0500
|
||||
@@ -384,6 +384,9 @@ void rfc822_parse_content (BODY *body,ST
|
||||
if (CHR (bs) == '\012'){/* following LF? */
|
||||
c = SNX (bs); i--; /* yes, slurp it */
|
||||
}
|
||||
+ if (!i) /* Make sure we don't get an overflow for */
|
||||
+ break; /* messages ending on \015 (or the following */
|
||||
+ /* i-- will cause i to be MAXINT. Not good.) */
|
||||
case '\012': /* at start of a line, start with -- ? */
|
||||
if (!(i && i-- && ((c = SNX (bs)) == '-') && i-- &&
|
||||
((c = SNX (bs)) == '-'))) break;
|
||||
Reference in New Issue
Block a user