From b9703413c2c4d9c0ec6989cc4fecce7e4fd2b2c0 Mon Sep 17 00:00:00 2001 From: "asqueella%gmail.com" Date: Sat, 17 Feb 2007 23:18:26 +0000 Subject: [PATCH] Bug 322089 - Problem handling Usenet signature separator when format=flowed, delsp=yes (RFC 3676) (remove extraneous line-end code) p=James r=mscott git-svn-id: svn://10.0.0.236/trunk@220494 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/mailnews/mime/src/mimetpfl.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mozilla/mailnews/mime/src/mimetpfl.cpp b/mozilla/mailnews/mime/src/mimetpfl.cpp index 9d512a9ef29..b28b7ca80f1 100644 --- a/mozilla/mailnews/mime/src/mimetpfl.cpp +++ b/mozilla/mailnews/mime/src/mimetpfl.cpp @@ -352,10 +352,6 @@ MimeInlineTextPlainFlowed_parse_line (const char *aLine, PRInt32 length, MimeObj (RFC 3676) */ { length--; - while(index < length) { - line[index] = line[index + 1]; - index++; - } line[index] = '\0'; } }