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
Родитель 88ab03ae5d
Коммит 2694b029a0
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;
}