Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix test to not to cause false positivesphp-5.6.20PHP-5.6.20 | Anatol Belski | 2016-03-31 | 1 | -2/+5 |
| | |||||
* | Fixed bug #71527 Buffer over-write in finfo_open with malformed magic file | Anatol Belski | 2016-03-30 | 4 | -7/+24 |
| | | | | | The actual fix is applying the upstream patch from https://github.com/file/file/commit/6713ca45e7757297381f4b4cdb9cf5e624a9ad36 | ||||
* | PHP 5.6.20 | Ferenc Kovacs | 2016-03-30 | 3 | -4/+22 |
| | |||||
* | Merge branch 'PHP-5.5' into PHP-5.6.20 | Stanislav Malyshev | 2016-03-28 | 1 | -1/+1 |
|\ | | | | | | | | | * PHP-5.5: Fixed bug #71704 php_snmp_error() Format String Vulnerability | ||||
| * | Fixed bug #71704 php_snmp_error() Format String Vulnerability | Anatol Belski | 2016-03-28 | 1 | -1/+1 |
| | | | | | | | | | | Conflicts: ext/snmp/snmp.c | ||||
* | | Merge branch 'PHP-5.5' into PHP-5.6.20 | Stanislav Malyshev | 2016-03-28 | 11 | -60/+64 |
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.5: Fixed bug #71906: AddressSanitizer: negative-size-param (-1) in mbfl_strcut Fixed bug #71906: AddressSanitizer: negative-size-param (-1) in mbfl_strcut Fix bug #71798 - Integer Overflow in php_raw_url_encode Fix bug #71860: Require valid paths for phar filenames Going for 5.5.34 Conflicts: configure.in ext/phar/tests/create_path_error.phpt main/php_version.h | ||||
| * | Merge branch 'PHP-5.5.34' into PHP-5.5 | Stanislav Malyshev | 2016-03-28 | 0 | -0/+0 |
| |\ | | | | | | | | | | | | | * PHP-5.5.34: Fixed bug #71906: AddressSanitizer: negative-size-param (-1) in mbfl_strcut | ||||
| | * | Fixed bug #71906: AddressSanitizer: negative-size-param (-1) in mbfl_strcut | Stanislav Malyshev | 2016-03-28 | 1 | -17/+17 |
| | | | |||||
| * | | Fixed bug #71906: AddressSanitizer: negative-size-param (-1) in mbfl_strcut | Stanislav Malyshev | 2016-03-28 | 2 | -20/+20 |
| |/ | |||||
| * | Fix bug #71798 - Integer Overflow in php_raw_url_encode | Stanislav Malyshev | 2016-03-27 | 2 | -4/+4 |
| | | |||||
| * | Fix bug #71860: Require valid paths for phar filenames | Stanislav Malyshev | 2016-03-20 | 9 | -37/+41 |
| | | |||||
| * | Going for 5.5.34 | Julien Pauli | 2016-03-02 | 3 | -4/+8 |
| | | |||||
* | | 5.6.20RC1php-5.6.20RC1 | Ferenc Kovacs | 2016-03-17 | 3 | -5/+5 |
| | | |||||
* | | fix #ifdef usage | Remi Collet | 2016-03-16 | 1 | -1/+1 |
| | | |||||
* | | Updated to version 2016.2 (2016b) | Derick Rethans | 2016-03-15 | 1 | -1449/+1594 |
| | | |||||
* | | update libs versions | Anatol Belski | 2016-03-15 | 1 | -3/+3 |
| | | |||||
* | | fix test | Anatol Belski | 2016-03-14 | 1 | -1/+2 |
| | | | | | | | | | | Many warnings won't appear with libxml2 >= 2.9.3 because in many cases libxml2 2.9.3 will just abort processing. | ||||
* | | update NEWS | Anatol Belski | 2016-03-11 | 1 | -0/+3 |
| | | |||||
* | | Fix DatePeriod::getEndDate() segfault | Thomas Punt | 2016-03-11 | 2 | -0/+15 |
| | | |||||
* | | fix error condition, part of bug #71753 | Anatol Belski | 2016-03-10 | 1 | -1/+1 |
| | | |||||
* | | tsrm_win32_get_path_sid_key might returns NULL (Partially fix bug #71752) | Xinchen Hui | 2016-03-10 | 1 | -1/+3 |
| | | | | | | | | cherry-picked from 7d5f71b0b125c89211e5a2a6d925deba938abd41 | ||||
* | | Fixed typo (partially fix for #71753) | Xinchen Hui | 2016-03-10 | 1 | -1/+1 |
| | | |||||
* | | fix directory separator | Anatol Belski | 2016-03-09 | 1 | -2/+2 |
| | | |||||
* | | fix regression introduced in 5683b6fa39 | Anatol Belski | 2016-03-08 | 2 | -1/+3 |
| | | | | | | | | | | Test extended. Basically, both iterator type and next node have to be checked. | ||||
* | | Fixed bug #69953 | Christoph M. Becker | 2016-03-03 | 5 | -5/+26 |
| | | | | | | | | Added support for MKCALENDAR request method in CLI web server. | ||||
* | | Additional improvements to crypt() detection code | Anton Blanchard | 2016-03-03 | 1 | -50/+53 |
| | | | | | | | | | | Reformat to normalize tabs vs spaces, return 1 if crypt.h not defined, fix C99 compliance. | ||||
* | | ext/standard/config.m4: fix crypt() test segfaults in >=glibc-2.17. | Michael Orlitzky | 2016-03-03 | 1 | -6/+12 |
| | | | | | | | | | | | | | | | | | | | | | | | | Starting with glibc-2.17, the crypt() function will report an EINVAL and return NULL when the format of the "salt" parameter is invalid. The current tests for crypt() pass its result to strcmp(), causing segfaults when the value returned from crypt() is NULL. This commit modifies the test programs to exit with failure when crypt() returns NULL. Reference: https://bugs.gentoo.org/show_bug.cgi?id=518964 | ||||
* | | Disable upload_2G test on travis | Nikita Popov | 2016-03-03 | 1 | -0/+4 |
| | | |||||
* | | show correct MINFO with libpq >= 9.5.x | Anatol Belski | 2016-03-02 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'PHP-5.6.19' into PHP-5.6 | Stanislav Malyshev | 2016-03-01 | 1 | -0/+0 |
|\ \ | | | | | | | | | | | | | | | | | | | * PHP-5.6.19: fix test file Fix version Update NEWS | ||||
| * \ | Merge branch 'PHP-5.5' into PHP-5.6.19 | Stanislav Malyshev | 2016-03-01 | 1 | -0/+0 |
| |\ \ | | |/ | | | | | | | | | | | | | | | | * PHP-5.5: fix test file Fix version Update NEWS | ||||
| | * | fix test file | Stanislav Malyshev | 2016-03-01 | 1 | -0/+0 |
| | | | |||||
| | * | Fix version | Stanislav Malyshev | 2016-03-01 | 1 | -3/+3 |
| | | | |||||
| | * | Update NEWS | Stanislav Malyshev | 2016-03-01 | 2 | -4/+11 |
| | | | |||||
* | | | Merge branch 'PHP-5.6.19' into PHP-5.6 | Stanislav Malyshev | 2016-03-01 | 9 | -13/+91 |
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | * PHP-5.6.19: update NEWS Fix bug #71498: Out-of-Bound Read in phar_parse_zipfile() fix ts buld prep for 5.6.19RC1 Fixed bug #71587 - Use-After-Free / Double-Free in WDDX Deserialize | ||||
| * | | update NEWS | Stanislav Malyshev | 2016-03-01 | 1 | -1/+7 |
| | | | |||||
| * | | Merge branch 'PHP-5.5.33' into PHP-5.6.19 | Stanislav Malyshev | 2016-03-01 | 6 | -7/+79 |
| |\ \ | | |/ | | | | | | | | | | | | | * PHP-5.5.33: Fix bug #71498: Out-of-Bound Read in phar_parse_zipfile() Fixed bug #71587 - Use-After-Free / Double-Free in WDDX Deserialize | ||||
| | * | Fix bug #71498: Out-of-Bound Read in phar_parse_zipfile() | Stanislav Malyshev | 2016-02-21 | 4 | -3/+21 |
| | | | |||||
| | * | Fixed bug #71587 - Use-After-Free / Double-Free in WDDX Deserialize | Stanislav Malyshev | 2016-02-14 | 2 | -4/+58 |
| | | | |||||
| * | | fix ts buldphp-5.6.19RC1 | Anatol Belski | 2016-02-18 | 1 | -1/+1 |
| | | | |||||
| * | | prep for 5.6.19RC1 | Ferenc Kovacs | 2016-02-18 | 3 | -9/+7 |
| | | | |||||
* | | | Merge branch 'PHP-5.6-bug_69757' of https://github.com/wayfair/php-src into ↵ | Xinchen Hui | 2016-03-02 | 1 | -2/+2 |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | PHP-5.6 * 'PHP-5.6-bug_69757' of https://github.com/wayfair/php-src: limit size of result set so unit test runs reliably | ||||
| * | | | limit size of result set so unit test runs reliably | Adam Baratz | 2016-03-01 | 1 | -2/+2 |
| | | | | |||||
* | | | | Fix intermittent failure of bug_68819_002.phpt | Nikita Popov | 2016-03-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The test used rand(32, 127) to select the character, however chr(127) results in "data" instead of the expected result, so this test would fail in something like 1% of the runs. Replace rand() with fixed character "a". | ||||
* | | | | Fix bug #71694 | mpyw | 2016-03-01 | 2 | -0/+6 |
|/ / / | | | | | | | | | | Exports contants CURLM_ADDED_ALREADY. | ||||
* | | | Fixed bugs #71317 and #71504 | Jos Elstgeest | 2016-02-29 | 5 | -1/+73 |
| | | | | | | | | | | | | If there are duplicate filenames in tar, the last one wins. | ||||
* | | | add test for bug #68957 | Anatol Belski | 2016-02-29 | 1 | -0/+29 |
| | | | |||||
* | | | update NEWS | Anatol Belski | 2016-02-29 | 1 | -0/+4 |
| | | | |||||
* | | | Fixed #54648 PDO::MSSQL forces format of datetime fields | Anatol Belski | 2016-02-29 | 2 | -0/+45 |
| | | | | | | | | | | | | adopted patch by steven dot lambeth at gmx dot de | ||||
* | | | remove unneeded free parts | Anatol Belski | 2016-02-29 | 1 | -22/+0 |
| | | | | | | | | | | | | See bug #71667, free_statement already does the job |