From 153bea0ce4e129bd3f9eeefd27e88e76172007e8 Mon Sep 17 00:00:00 2001 From: "nhotta%netscape.com" Date: Mon, 15 May 2000 20:03:04 +0000 Subject: [PATCH] Revert the last change (1.62) of striping off TAB which should not be done in MIME decoder, MIME_StripContinuations does this instead. git-svn-id: svn://10.0.0.236/trunk@69822 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/mailnews/mime/src/comi18n.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/mozilla/mailnews/mime/src/comi18n.cpp b/mozilla/mailnews/mime/src/comi18n.cpp index c96bc4066a6..b02e1dae212 100644 --- a/mozilla/mailnews/mime/src/comi18n.cpp +++ b/mozilla/mailnews/mime/src/comi18n.cpp @@ -1142,8 +1142,6 @@ char *intl_decode_mime_part2_str(const char *header, char* charset) if (p == NULL) break; /* exit the loop because the rest are not encoded */ *p = '\0'; -if (TAB == *begin) - begin++; /* skip strings don't need conversion */ strncpy(output_p, begin, p - begin); output_p += p - begin;