]> git.pld-linux.org Git - packages/php.git/blob - php-5.3.7-bug-54180.patch
use /usr/sbin/php-fpm as other branches
[packages/php.git] / php-5.3.7-bug-54180.patch
1 --- PHP_5_3/ext/standard/url.c  2011/03/17 16:20:19     309351
2 +++ PHP_5_3/ext/standard/url.c  2011/03/17 18:02:58     309352
3 @@ -316,6 +316,10 @@
4                 pp = strchr(s, '#');
5  
6                 if (pp && pp < p) {
7 +                       if (pp - s) {
8 +                               ret->path = estrndup(s, (pp-s));
9 +                               php_replace_controlchars_ex(ret->path, (pp - s));
10 +                       }
11                         p = pp;
12                         goto label_parse;
13                 }
This page took 0.040633 seconds and 3 git commands to generate.