зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
ed95fe23f0
Коммит
058f43c987
|
@ -187,6 +187,13 @@ nsHttpResponseHead::ParseHeaderLine(char *line)
|
||||||
++p;
|
++p;
|
||||||
} while ((*p == ' ') || (*p == '\t'));
|
} 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
|
// assign response header
|
||||||
mHeaders.SetHeader(atom, p);
|
mHeaders.SetHeader(atom, p);
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче