commit 026b6b0: [Minor] One more fix for spaces at the end of boundary

Vsevolod Stakhov vsevolod at highsecure.ru
Mon Apr 27 16:07:08 UTC 2020


Author: Vsevolod Stakhov
Date: 2020-04-27 17:03:41 +0100
URL: https://github.com/rspamd/rspamd/commit/026b6b09d0666ddc6d3359b4a73f074b061e0da7 (HEAD -> master)

[Minor] One more fix for spaces at the end of boundary

---
 src/libmime/mime_parser.c | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/src/libmime/mime_parser.c b/src/libmime/mime_parser.c
index 4038f59c6..590ee57d6 100644
--- a/src/libmime/mime_parser.c
+++ b/src/libmime/mime_parser.c
@@ -1108,19 +1108,26 @@ rspamd_mime_preprocess_cb (struct rspamd_multipattern *mp,
 				bend ++;
 			}
 
-			if (bend < end) {
+			while (bend < end) {
 				if (*bend == '\r') {
-					bend++;
+					bend ++;
 
 					/* \r\n */
 					if (bend < end && *bend == '\n') {
-						bend++;
+						bend ++;
 					}
 				}
-				else {
+				else if (*bend == '\n') {
 					/* \n */
-					bend++;
+					bend ++;
 				}
+				else if (g_ascii_isspace (*bend)){
+					/* Spaces in the same line, skip them */
+					bend ++;
+					continue;
+				}
+
+				break;
 			}
 
 			b.boundary = p - st->start - 2;


More information about the Commits mailing list