]> git.pld-linux.org Git - packages/php.git/blame - php-5.2.17-bug-55674.patch
use /usr/sbin/php-fpm as other branches
[packages/php.git] / php-5.2.17-bug-55674.patch
CommitLineData
82f6b657
ER
1diff -up php-5.2.17/ext/standard/file.c.bug-55674 php-5.2.17/ext/standard/file.c
2--- php-5.2.17/ext/standard/file.c.bug-55674 2012-01-12 09:39:13.000000000 +0700
3+++ php-5.2.17/ext/standard/file.c 2012-01-12 09:39:28.000000000 +0700
4@@ -2156,7 +2156,7 @@ PHPAPI void php_fgetcsv(php_stream *stre
5 inc_len = (bptr < limit ? (*bptr == '\0' ? 1: php_mblen(bptr, limit - bptr)): 0);
6 if (inc_len == 1) {
7 char *tmp = bptr;
8- while (isspace((int)*(unsigned char *)tmp)) {
9+ while ((*tmp != delimiter) && isspace((int)*(unsigned char *)tmp)) {
10 tmp++;
11 }
12 if (*tmp == enclosure) {
This page took 0.028916 seconds and 4 git commands to generate.