Fixes bug 86608 "Content-Encoding with space in the end"

patch=deinst@world.std.com, r=bbaetz, sr=darin, a=tor
This commit is contained in:
darin%netscape.com 2001-06-22 01:46:16 +00:00
Родитель ed95fe23f0
Коммит 058f43c987
1 изменённых файлов: 7 добавлений и 0 удалений

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

@ -187,6 +187,13 @@ nsHttpResponseHead::ParseHeaderLine(char *line)
++p;
} while ((*p == ' ') || (*p == '\t'));
// trim trailing whitespace - bug 86608
p2 = p + PL_strlen(p);
do {
--p2;
} while (p2 >= p && ((*p2 == ' ') || (*p2 == '\t')));
*++p2 = 0;
// assign response header
mHeaders.SetHeader(atom, p);