]> git.pld-linux.org Git - packages/php.git/blob - php-5.2.17-bug-55273.patch
use /usr/sbin/php-fpm as other branches
[packages/php.git] / php-5.2.17-bug-55273.patch
1 diff -up php-5.2.17/ext/standard/base64.c.bug-55273 php-5.2.17/ext/standard/base64.c
2 --- php-5.2.17/ext/standard/base64.c.bug-55273  2012-01-12 10:45:40.000000000 +0700
3 +++ php-5.2.17/ext/standard/base64.c    2012-01-12 10:47:32.000000000 +0700
4 @@ -154,7 +154,15 @@ PHPAPI unsigned char *php_base64_decode_
5         /* run through the whole string, converting as we go */
6         while ((ch = *current++) != '\0' && length-- > 0) {
7                 if (ch == base64_pad) {
8 -                       if (*current != '=' && (i % 4) == 1) {
9 +                       if (*current != '=' && ((i % 4) == 1 || (strict && length > 0))) {
10 +                               if ((i % 4) != 1) {
11 +                                       while (isspace(*(++current))) {
12 +                                               continue;
13 +                                       }
14 +                                       if (*current == '\0') {
15 +                                               continue;
16 +                                       }
17 +                               }
18                                 efree(result);
19                                 return NULL;
20                         }
This page took 0.823805 seconds and 3 git commands to generate.