summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update version for PHP 7.3.4php-7.3.4PHP-7.3.4Christoph M. Becker2019-04-024-5/+5
|
* Merge branch 'PHP-7.2' into PHP-7.3Remi Collet2019-04-021-1/+1
| | | | | | | * PHP-7.2: fix paste issue (cherry picked from commit 002983e4636ee30f733b958449f28e362e513cfc)
* Merge branch 'PHP-7.2' into PHP-7.3Christoph M. Becker2019-04-021-2/+2
| | | | | | | * PHP-7.2: Pointer arithmetic on void pointers is illegal (cherry picked from commit b8fdaa7c42ea8c97847193bd72d7e8716455386c)
* Merge branch 'PHP-7.2' into PHP-7.3Stanislav Malyshev2019-04-024-15/+42
| | | | | | | * PHP-7.2: Fixed bug #77831 - Heap-buffer-overflow in exif_iif_add_value in EXIF (cherry picked from commit da5fbb8c3647121de61b69b448a16ea76e72da1f)
* Merge branch 'PHP-7.2' into PHP-7.3Stanislav Malyshev2019-04-024-0/+23
| | | | | | | * PHP-7.2: Fix bug #77753 - Heap-buffer-overflow in php_ifd_get32s (cherry picked from commit 9efaac30aeff82a61a015f4de53eb1ece2d93d61)
* Revert "Fix #77609: Tests from mailparse extension fails"php-7.3.4RC1Christoph M. Becker2019-03-201-4/+3
| | | | This reverts commit 3ead67239419632eecb83f0f101ead2021ee6c14.
* Update version for PHP 7.3.4RC1Christoph M. Becker2019-03-194-5/+5
|
* Merge branch 'PHP-7.2' into PHP-7.3Nikita Popov2019-03-193-1/+25
|\
| * Fixed bug #77765Vlad Temian2019-03-193-1/+25
| | | | | | | | | | | | | | Set mode 40755 for directories, via FTP stream stat. Because we already manage to CWD into the current directory, we should set 40755 as mode, instead of 40644.
* | Merge branch 'PHP-7.2' into PHP-7.3Nikita Popov2019-03-192-2/+6
|\ \ | |/
| * Fix #77767: phpdbg break command help message shows incorrect aliasesMiriam Lauter2019-03-192-2/+6
| | | | | | | | | | | | Previously the aliases for at and del were listed as A and d in the help message for break. This patch corrects the aliases to be @ and ~ respectively.
* | Fix orderChristoph M. Becker2019-03-181-3/+3
| |
* | Merge branch 'PHP-7.2' into PHP-7.3Christoph M. Becker2019-03-183-2/+28
|\ \ | |/ | | | | | | * PHP-7.2: Fix #77578: Crash when php unload
| * Fix #77578: Crash when php unloadChristoph M. Becker2019-03-183-2/+28
| | | | | | | | | | Since we're putting `ITypeLib *`s into the hash, we're getting `ITypeLib *`s back, not `ITypeLib **`s.
* | Merge branch 'PHP-7.2' into PHP-7.3Christoph M. Becker2019-03-181-1/+25
|\ \ | |/ | | | | | | * PHP-7.2: Add bison version check to configure
| * Add bison version check to configureChristoph M. Becker2019-03-181-1/+25
| | | | | | | | | | Since we're already checking for the minimum required re2c version, also checking for the minimum required bison version is sensible.
* | Merge branch 'PHP-7.2' into PHP-7.3Xinchen Hui2019-03-181-26/+9
|\ \ | |/ | | | | | | * PHP-7.2: Simplfy test case
| * Simplfy test caseXinchen Hui2019-03-181-26/+9
| | | | | | | | (I was working on the same bug while nikic committed the similar fix
* | Merge branch 'PHP-7.2' into PHP-7.3Nikita Popov2019-03-181-3/+3
|\ \ | |/
| * Make test independent of icu versionNikita Popov2019-03-181-3/+3
| | | | | | | | | | We don't really care about the actual output here, just that it doesn't fail.
* | Merge branch 'PHP-7.2' into PHP-7.3Nikita Popov2019-03-182-1/+13
|\ \ | |/
| * Allow DateTimeImmutable in datefmt_format_object()Nikita Popov2019-03-182-1/+13
| | | | | | | | As pointed out in a comment on bug #65683.
* | Merge branch 'PHP-7.2' into PHP-7.3Nikita Popov2019-03-182-7/+24
|\ \ | |/
| * Partial fix for bug #77751Nikita Popov2019-03-182-7/+24
| | | | | | | | | | This avoids the segfault, but it will not make writing to the SplFileObject during output shutdown work.
* | Merge branch 'PHP-7.2' into PHP-7.3Nikita Popov2019-03-183-2/+46
|\ \ | |/
| * Fixed bug #77743Nikita Popov2019-03-183-2/+44
| |
* | Fix #76956: Wrong value for 'syslog.filter' documented in php.iniChristoph M. Becker2019-03-183-4/+8
| |
* | Remove x86 bit test optimizationNikita Popov2019-03-181-6/+2
| | | | | | | | | | This is undefined behavior and we cannot rely on it. Additionally it breaks builds using undefined behavior sanitizers.
* | Merge branch 'PHP-7.2' into PHP-7.3Nikita Popov2019-03-181-2/+1
|\ \ | |/
| * Fix unused variable warningNikita Popov2019-03-181-2/+1
| |
* | Merge branch 'PHP-7.2' into PHP-7.3Nikita Popov2019-03-183-4/+20
|\ \ | |/
| * Don't disable object slot reuse while running shutdown functionstwosee2019-03-183-4/+20
| | | | | | | | | | | | We only need to do this once we're running destructors. The current approach interferes with some event loop code that runs everything inside a shutdown function.
* | Merge branch 'PHP-7.2' into PHP-7.3Derick Rethans2019-03-171-10/+10
|\ \ | |/
| * Fixed 7.2 compat issueDerick Rethans2019-03-171-10/+10
| |
* | Merge branch 'PHP-7.2' into PHP-7.3Derick Rethans2019-03-173-0/+40
|\ \ | |/
| * Merge branch 'pr/3888' into PHP-7.2Derick Rethans2019-03-174-4/+46
| |\
| | * Fixed bug #75113: Added DatePeriod::getRecurrences() method.Ignace Nyamagana Butera2019-03-174-4/+46
| |/
* | Merge branch 'PHP-7.2' into PHP-7.3Pedro Magalhães2019-03-151-0/+77
|\ \ | |/ | | | | | | * PHP-7.2: Added test for #77535 fix
| * Added test for #77535 fixPedro Magalhães2019-03-151-0/+77
| |
* | Merge branch 'PHP-7.2' into PHP-7.3Nikita Popov2019-03-151-5/+1
|\ \ | |/
| * Don't immediately destroy curl pushfunctionNikita Popov2019-03-151-5/+1
| |
* | Fixed bug #77697 (Crash on Big_Endian platform)Xinchen Hui2019-03-152-2/+6
| |
* | Merge branch 'PHP-7.2' into PHP-7.3Nikita Popov2019-03-142-5/+16
|\ \ | |/
| * Fixed bug #77742Nikita Popov2019-03-142-5/+16
| | | | | | | | | | | | | | By avoiding integer overflow in the implementation entirely. The multiplication was already explicitly checked for overflow, so also add a check for the addition and remove the overflow checks after the calculation.
* | updated NEWSXinchen Hui2019-03-141-0/+1
| |
* | Merge branch 'PHP-7.2' into PHP-7.3Xinchen Hui2019-03-142-2/+10
|\ \ | |/ | | | | | | * PHP-7.2: Fixed bug #77738 (Nullptr deref in zend_compile_expr)
| * Fixed bug #77738 (Nullptr deref in zend_compile_expr)Xinchen Hui2019-03-143-2/+11
| |
* | Fixed bug #77722Nikita Popov2019-03-122-2/+10
| |
* | Merge branch 'PHP-7.2' into PHP-7.3Anatol Belski2019-03-111-2/+6
|\ \ | |/ | | | | | | * PHP-7.2: Die hard if mc.exe or mt.exe not found
| * Die hard if mc.exe or mt.exe not foundAnatol Belski2019-03-111-2/+6
| | | | | | | | | | Even configure would pass, that producess quite subtle build errors which are better to avoid at configure stage already.