mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
- Merging r323033 into 5.3 (see bug #60227).
This commit is contained in:
@@ -7,7 +7,7 @@ PHP NEWS
|
||||
|
||||
- Core:
|
||||
. Fixed bug #60227 (header() cannot detect the multi-line header with CR).
|
||||
(rui)
|
||||
(rui, Gustavo)
|
||||
. Fixed bug #60825 (Segfault when running symfony 2 tests).
|
||||
(Dmitry, Laruence)
|
||||
. Fix bug #60895 (Possible invalid handler usage in windows random
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
--TEST--
|
||||
Bug #60227 (header() cannot detect the multi-line header with CR), \r before \n
|
||||
--FILE--
|
||||
<?php
|
||||
header("X-foo: e\n foo");
|
||||
header("X-Foo6: e\rSet-Cookie: ID=123\n d");
|
||||
echo 'foo';
|
||||
?>
|
||||
--EXPECTF--
|
||||
Warning: Header may not contain more than a single header, new line detected. in %s on line %d
|
||||
foo
|
||||
--EXPECTHEADERS--
|
||||
X-foo: e
|
||||
foo
|
||||
+5
-4
@@ -591,10 +591,11 @@ SAPI_API int sapi_header_op(sapi_header_op_enum op, void *arg TSRMLS_DC)
|
||||
}
|
||||
} else {
|
||||
/* new line safety check */
|
||||
char *s = header_line, *e = header_line + header_line_len, *p;
|
||||
while (s < e && ((p = memchr(s, '\n', (e - s))) || (p = memchr(s, '\r', (e - s))))) {
|
||||
if (*(p + 1) == ' ' || *(p + 1) == '\t') {
|
||||
s = p + 1;
|
||||
char *s = header_line;
|
||||
while (s = strpbrk(s, "\n\r")) {
|
||||
if (s[1] == ' ' || s[1] == '\t') {
|
||||
/* RFC 2616 allows new lines if followed by SP or HT */
|
||||
s++;
|
||||
continue;
|
||||
}
|
||||
efree(header_line);
|
||||
|
||||
Reference in New Issue
Block a user