]> git.pld-linux.org Git - packages/php.git/blob - 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
1 diff -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.022804 seconds and 3 git commands to generate.