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
This commit is contained in:
nhotta%netscape.com 2000-05-15 20:03:04 +00:00
parent e96a25651f
commit 153bea0ce4

View File

@ -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;