]> git.pld-linux.org Git - packages/php.git/blame - php-5.2.17-bug-55504.patch
move php.1 manual to -program (link to actual php-cli)
[packages/php.git] / php-5.2.17-bug-55504.patch
CommitLineData
82f6b657
ER
1diff -up php-5.2.17/main/rfc1867.c.bug-55504 php-5.2.17/main/rfc1867.c
2--- php-5.2.17/main/rfc1867.c.bug-55504 2012-01-12 10:13:38.000000000 +0700
3+++ php-5.2.17/main/rfc1867.c 2012-01-12 10:14:14.000000000 +0700
4@@ -817,7 +817,7 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_
5 }
6 } else {
7 /* search for the end of the boundary */
8- boundary_end = strchr(boundary, ',');
9+ boundary_end = strpbrk(boundary, ",;");
10 }
11 if (boundary_end) {
12 boundary_end[0] = '\0';
This page took 0.033001 seconds and 4 git commands to generate.