summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Updated NEWSphp-5.5.22PHP-5.5.22Julien Pauli2015-02-181-0/+2
|
* Fix bug #69033 (Request may get env. variables from previous requests if PHP ↵Ferenc Kovacs2015-02-181-0/+3
| | | | works as FastCGI)
* fix testsStanislav Malyshev2015-02-183-3/+3
|
* 5.5.22Julien Pauli2015-02-183-4/+13
|
* Add NULL byte protection to exec, system and passthruYasuo Ohgaki2015-02-182-0/+29
|
* Update header handling to RFC 7230Stanislav Malyshev2015-02-184-16/+12
|
* fix TS buildStanislav Malyshev2015-02-181-2/+2
|
* Fix bug #68942 (Use after free vulnerability in unserialize() with DateTimeZone)Stanislav Malyshev2015-02-182-4/+16
|
* Port for for bug #68552Stanislav Malyshev2015-02-181-4/+3
|
* Fix bug #68942 (Use after free vulnerability in unserialize() with DateTimeZone)Stanislav Malyshev2015-02-182-7/+12
| | | | | Conflicts: ext/date/php_date.c
* 5.5.22RC1php-5.5.22RC1Julien Pauli2015-02-043-10/+7
|
* Updated NEWSJulien Pauli2015-02-041-2/+0
|
* Revert "Fixed bug #55407 (Impossible to prototype DateTime::createFromFormat)"Julien Pauli2015-02-042-18/+1
| | | | This reverts commit 8e19705a93d785cd1ff8ba3a69699b00169fea47.
* 5.5.23 nowJulien Pauli2015-02-043-8/+7
|
* Revert "json_decode() should generate a syntax error when given ""."Julien Pauli2015-02-043-19/+2
| | | | This reverts commit a7b3abe4e6f5e2fdfd8d55b676c9ca6b3f9c8cc8.
* Update NEWSYasuo Ohgaki2015-02-031-0/+5
|
* Fixed Bug #65199 pg_copy_from() modifies input array variableYasuo Ohgaki2015-02-032-10/+66
|
* Fixed Bug #66623 no EINTR check on flock(LOCK_EX)Yasuo Ohgaki2015-02-031-2/+5
|
* Fixed bug #68063 Empty session IDs do still start sessionsYasuo Ohgaki2015-02-032-0/+25
|
* Bug #61470 is fixed only in masterYasuo Ohgaki2015-02-031-21/+0
|
* Fixed bug #65272: correctly set flock() out param in windowsDaniel Lowrey2015-02-023-0/+34
|
* Let's not assume bash is always /bin/bash.Adam Harvey2015-02-021-2/+2
|
* json_decode() should generate a syntax error when given "".Adam Harvey2015-02-024-2/+23
| | | | | Fixes bug #68938 (json_decode() decodes empty string without error). Patch by jeremy at bat-country dot us.
* Add test for bug #61470. It is already fixed.Yasuo Ohgaki2015-02-021-0/+21
|
* Merge branch 'PHP-5.5' of git.php.net:php-src into PHP-5.5Stanislav Malyshev2015-02-011-17289/+17211
|\ | | | | | | | | * 'PHP-5.5' of git.php.net:php-src: - Updated to version 2015.1 (2015a)
| * - Updated to version 2015.1 (2015a)Derick Rethans2015-02-011-17289/+17211
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2015-02-011-1/+1
|\ \ | |/ |/| | | | | * PHP-5.4: fix sizeof size
| * fix sizeof sizeStanislav Malyshev2015-02-011-1/+1
| |
* | Fix #66479: Wrong response to FCGI_GET_VALUESFrank Stolle2015-02-012-2/+5
| | | | | | | | | | | | | | Requesting Get-Values via FCGI caused an "endless" loop over the last requested parameter and ended with an invalid response. this patch solves this loop bug. Conflicts: sapi/cgi/fastcgi.c
* | Fix bug #64938: libxml_disable_entity_loader setting is shared between threadsMartin Jansen2015-02-012-0/+10
| | | | | | | | | | | | | | | | | | | | | | The availability of entity loading is stored in a module global which previously was only initialized in the GINIT constructor. This had the effect that disabling the entity loader in one request caused subsequent requests hitting the same Apache child process to also have the loader disabled. With this change the loader is explicitely enabled in the request init phase.
* | fix group name handlingStanislav Malyshev2015-01-311-1/+1
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2015-01-311-2/+2
|\ \ | |/ | | | | | | * PHP-5.4: fix TSRM
| * fix TSRMStanislav Malyshev2015-01-311-2/+2
| |
* | add NEWSStanislav Malyshev2015-01-311-0/+2
| |
* | Added test and possible fix for https://bugs.php.net/bug.php?id=67068Danack2015-01-312-0/+19
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2015-01-317-18/+18
|\ \ | |/ | | | | | | | | * PHP-5.4: Use better constant since MAXHOSTNAMELEN may mean shorter name use right sizeof for memset
| * Use better constant since MAXHOSTNAMELEN may mean shorter nameStanislav Malyshev2015-01-315-12/+16
| |
| * use right sizeof for memsetStanislav Malyshev2015-01-311-1/+1
| |
* | Add mitigation for CVE-2015-0235 (bug #68925)Stanislav Malyshev2015-01-314-3/+9
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2015-01-314-2/+40
|\ \ | |/ | | | | | | * PHP-5.4: Add mitigation for CVE-2015-0235 (bug #68925)
| * Add mitigation for CVE-2015-0235 (bug #68925)Stanislav Malyshev2015-01-315-2/+44
| |
* | Fixed typo in commentYasuo Ohgaki2015-02-011-1/+1
| |
* | Use bash rather than shYasuo Ohgaki2015-01-291-1/+1
| |
* | Fixed Bug #68941 mod_files.sh is a bash-scriptYasuo Ohgaki2015-01-292-1/+4
| |
* | Fixed bug #68901 (use after free)Xinchen Hui2015-01-292-1/+4
| |
* | fcgi_write in fpm returns ssizt_t, but it returns int in cgiXinchen Hui2015-01-271-1/+1
| |
* | Revert previous unintentional change to thisXinchen Hui2015-01-271-0/+1
| |
* | Also Fixed #68571 in CGI SAPI, and some cleanupXinchen Hui2015-01-276-9/+17
| |
* | Merge branch 'fixbug68571tophp5.5' of https://github.com/redfoxli/php-src ↵Xinchen Hui2015-01-272-1/+6
|\ \ | | | | | | | | | into PHP-5.5
| * | follow C89 formatredfoxli2014-12-101-1/+2
| | |