Bug 460443 - Thunderbird can't hande correctly multiline subject header that contains CR+HTAB instead of CR+SPC. r=biesi

This commit is contained in:
jhorak@redhat.com 2010-05-24 11:29:53 +02:00
Родитель 8572558f38
Коммит 9f3f38e621
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -395,6 +395,8 @@ nsMIMEHeaderParamImpl::DecodeRFC2047Header(const char* aHeaderVal,
if (aEatContinuations) {
nsCAutoString temp(aResult);
temp.ReplaceSubstring("\n\t", " ");
temp.ReplaceSubstring("\r\t", " ");
temp.StripChars("\r\n");
aResult = temp;
}