summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fixed bug #75786Nikita Popov2018-01-094-10/+24
| | | | | | | | | | | | | | | | | | SEND_UNPACK on iterators was duplicating references in-place, which effectively leaks the original value and causes an off-by-one refcount on the duplicated value. Replace this with a deref, as an actual duplication is not even needed in this case.
* | Backport narrowing fix to 7.1Nikita Popov2018-01-091-0/+18
| | | | | | | | This is a cherry-pick of 8a4532319dfae83ff16b2d2bbfeed062924c3c27.
* | Fixed bug #75781 (substr_count incorrect result)Xinchen Hui2018-01-092-1/+4
| |
* | Fix testsAnatol Belski2018-01-042-3/+5
| |
* | Skip on Travis-CIAnatol Belski2018-01-031-0/+1
| | | | | | | | | | | | | | | | The current doc states max ram for a test VM would be 7.5G, the currently used container image has even less. This skip should be revisited, as the available memory amount shifts. The way of checking /proc/meminfo doesn't work reliably on containers at least, thus skipping explicitly on Travis-CI makes sense.
* | Extend skip sectionAnatol Belski2018-01-031-1/+16
| | | | | | | | | | The test requires some untrivial amount of RAM. Added a simple check for the system free RAM to avoid false positive fails.
* | Merge branch 'PHP-7.0' into PHP-7.1Remi Collet2018-01-030-0/+0
|\ \ | |/ | | | | | | * PHP-7.0: 2018
| * Merge branch 'PHP-5.6' into PHP-7.0Remi Collet2018-01-030-0/+0
| |\ | | | | | | | | | | | | * PHP-5.6: 2018
| | * 2018Remi Collet2018-01-031-2/+2
| | |
* | | Merge branch 'PHP-7.0' into PHP-7.1Remi Collet2018-01-030-0/+0
|\ \ \ | |/ / | | | | | | | | | * PHP-7.0: 2018
| * | 2018Remi Collet2018-01-031-2/+2
| | |
* | | missing changelog entriesRemi Collet2018-01-031-0/+9
| | |
* | | Merge branch 'PHP-7.1-copyright' of https://github.com/kaplanlior/php-src ↵Xinchen Hui2018-01-0326-36/+36
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | into PHP-7.1 * 'PHP-7.1-copyright' of https://github.com/kaplanlior/php-src: Happy new year (Update copyright to 2018)
| * | | Happy new year (Update copyright to 2018)Lior Kaplan2018-01-0226-36/+36
| | | |
* | | | Merge branch 'PHP-7.0' into PHP-7.1Ferenc Kovacs2018-01-030-0/+0
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Merge branch 'PHP-5.6' into PHP-7.0Ferenc Kovacs2018-01-030-0/+0
| |\ \ | | |/
| | * php 5.6.34 is nextFerenc Kovacs2018-01-033-5/+7
| | |
* | | Skip test for pdo_odbcAnatol Belski2018-01-021-0/+1
| | | | | | | | | | | | | | | The error messages are too discrepant and '-' is otherwise not allowed by the parser.
* | | Fix test for pdo_odbcAnatol Belski2018-01-021-0/+3
| | | | | | | | | | | | SqlServer requires parentheses to the TOP argument.
* | | Fix some int/long confusion issues in GMPStanislav Malyshev2018-01-022-1/+31
| | | | | | | | | | | | | | | | | | mpz_setbit seems to have limit of INT_MAX * GMP_NUMB_BITS on the number of bits supported, and will abort() if that limit is exceeded.
* | | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2018-01-020-0/+0
|\ \ \ | |/ / | | | | | | | | | * PHP-7.0: [ci skip] update NEWS
| * | [ci skip] update NEWSAnatol Belski2018-01-021-0/+6
| | |
* | | regenerated with newer re2cXinchen Hui2018-01-022-1403/+1343
| | |
* | | Merge branch 'PHP-7.1' of git.php.net:/php-src into PHP-7.1Xinchen Hui2018-01-0217-50/+65
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * 'PHP-7.1' of git.php.net:/php-src: Update NEWS Fixed bug #75571: Potential infinite loop in gdImageCreateFromGifCtx Fix bug #74782: remove file name from output to avoid XSS
| * \ \ Merge branch 'PHP-7.0' into PHP-7.1Stanislav Malyshev2018-01-0117-50/+65
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | * PHP-7.0: Update NEWS Fixed bug #75571: Potential infinite loop in gdImageCreateFromGifCtx Fix bug #74782: remove file name from output to avoid XSS
| | * | Merge branch 'PHP-5.6' into PHP-7.0Stanislav Malyshev2018-01-0117-50/+65
| | |\ \ | | | |/ | | | | | | | | | | | | | | | | | | | | * PHP-5.6: Update NEWS Fixed bug #75571: Potential infinite loop in gdImageCreateFromGifCtx Fix bug #74782: remove file name from output to avoid XSS
| | | * Update NEWSStanislav Malyshev2018-01-011-1/+7
| | | |
| | | * Fixed bug #75571: Potential infinite loop in gdImageCreateFromGifCtxChristoph M. Becker2018-01-013-5/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to a signedness confusion in `GetCode_` a corrupt GIF file can trigger an infinite loop. Furthermore we make sure that a GIF without any palette entries is treated as invalid *after* open palette entries have been removed.
| | | * Fix bug #74782: remove file name from output to avoid XSSStanislav Malyshev2018-01-0114-45/+45
| | | |
* | | | year++Xinchen Hui2018-01-02926-936/+936
|/ / /
* | | Fixed bug #75502Nikita Popov2018-01-013-7/+24
| | | | | | | | | | | | | | | The string keys were not duplicated into persistent memory in this case.
* | | Use seialize_precision instead of precision in all json testsJakub Zelenka2017-12-306-6/+6
| | |
* | | Fixed bug #75720 (File cache not populated after SHM runs full)Dmitry Stogov2017-12-282-19/+41
| | |
* | | Fixed reference-countingDmitry Stogov2017-12-281-0/+1
| | |
* | | Fixed bug #75735 ([embed SAPI] Segmentation fault in sapi_register_post_entry)Xinchen Hui2017-12-273-0/+7
| | |
* | | Revert to Postgres 9.6, AppVeyor seems to have issues with 10Anatol Belski2017-12-222-2/+2
| | |
* | | Update tool pathAnatol Belski2017-12-221-1/+1
| | |
* | | Switch AppVeyor to PostgreSQL 10 for testsAnatol Belski2017-12-221-1/+1
| | |
* | | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2017-12-220-0/+0
|\ \ \ | |/ / | | | | | | | | | | | | * PHP-7.0: [ci skip] update NEWS Fixed bug #75579 (Interned strings buffer overflow may cause crash)
| * | [ci skip] update NEWSAnatol Belski2017-12-221-4/+4
| | |
| * | Fixed bug #75579 (Interned strings buffer overflow may cause crash)Dmitry Stogov2017-12-222-3/+33
| | | | | | | | | | | | (cherry picked from commit 37bf8bdc1494abb2ce5cac40e0be80e23682f851)
* | | Fixed bug #73209Nikita Popov2017-12-223-0/+39
| | |
* | | Fixed bug #75242Nikita Popov2017-12-223-4/+42
| | |
* | | Fixed bug #75717Nikita Popov2017-12-223-1/+32
| | |
* | | Fixed bug #70469Anton Artamonov2017-12-223-20/+24
| | | | | | | | | | | | | | | Don't generate an E_ERROR if we've already thrown an exception. This interacts badly with error_get_last() checks.
* | | Fix wrong return value for fail case in set attribute handler in pdo_odbcAnatol Belski2017-12-221-1/+1
| | |
* | | pdo_odbc has no driver API for quoting, skip the testAnatol Belski2017-12-221-0/+1
| | |
* | | Merge branch 'PHP-7.0' into PHP-7.1Dmitry Stogov2017-12-212-2/+34
|\ \ \ | | | | | | | | | | | | | | | | * PHP-7.0: Fixed bug #75579 (Interned strings buffer overflow may cause crash)
| * | | Fixed bug #75579 (Interned strings buffer overflow may cause crash)Dmitry Stogov2017-12-212-3/+33
| |/ /
* | | Ensure expected items delivered in same orderAnatol Belski2017-12-211-12/+11
| | |