summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix frequent reallocations with many small stringsphp-7.0.0RC6Dmitry Stogov2015-10-271-0/+16
|
* Fixed inconsistent exception handling (uopz/tests/006.phpt was failed when ↵Dmitry Stogov2015-10-272-4/+2
| | | | PHP build with --disable-gcc-global-regs).
* sync NEWSAnatol Belski2015-10-271-0/+2
|
* Fixed bug #70785 (Infinite loop due to exception during identical comparison)Xinchen Hui2015-10-273-170/+93
|
* Fixed incorrect "peak" memory consumption calculation.Dmitry Stogov2015-10-271-0/+12
|
* sync NEWSAnatol Belski2015-10-241-0/+2
|
* Fix bug #70782Nikita Popov2015-10-242-2/+19
|
* bump versionAnatol Belski2015-10-232-3/+3
|
* rather use the supplied inttypes.h with vc14Anatol Belski2015-10-231-0/+9
|
* Revert "Ensure proper exception handling and EX(opline) state in USER_OPCODE ↵Xinchen Hui2015-10-232-14/+2
| | | | | | | | handler" read: http://news.php.net/php.internals/88887 This reverts commit 808f62bb4d9812e9b7b35c87f3e90e5fc2bc244b.
* Regenerate zend_ini_scanner.cXinchen Hui2015-10-231-3582/+0
|
* sync newsAnatol Belski2015-10-231-0/+2
|
* Merge branch 'PHP-5.6' into PHP-7.0Xinchen Hui2015-10-233-4/+3606
| | | | | Conflicts: Zend/zend_ini_scanner.c
* sync NEWSAnatol Belski2015-10-231-0/+4
|
* Fixed bug #70730 (Incorrect ArrayObject serialization if unset is called in ↵Xinchen Hui2015-10-232-15/+59
| | | | | | | serialize()) It's possible to fixed this in SPL side, but it will be ugly, and we should make serialize more robust, so I prefer fix it in serialize side.
* sync NEWSAnatol Belski2015-10-231-0/+1
|
* Fixed bug #70715 (Segmentation fault inside soap client)Xinchen Hui2015-10-231-1/+5
|
* Prevent memcmp() result truncationBob Weinand2015-10-231-3/+3
| | | | This fixes reported issues with sapi/phpdbg/tests/watch_001.phpt
* sync NEWSAnatol Belski2015-10-181-0/+4
|
* Merge branch 'PHP-5.6' into PHP-7.0Anatol Belski2015-10-182-4/+46
| | | | | | | | | | | | * PHP-5.6: C89 compat use spprintf instead (no need to estrdup afterwards). dblib's dbcolname can return null in some cases testcase fot bug #69757 Segmentation fault on pdo_dblib::nextRowset (bug #69757) Conflicts: ext/pdo_dblib/dblib_stmt.c
* sync NEWSAnatol Belski2015-10-181-0/+4
|
* Fixed bug #70724 (Undefined Symbols from opcache.so on Mac OS X 10.10)Xinchen Hui2015-10-182-6/+11
|
* sync NEWSAnatol Belski2015-10-181-1/+3
|
* Fixed bug #70430Nikita Popov2015-10-182-10/+38
|
* Reindent zend_yytnamerrNikita Popov2015-10-181-39/+37
| | | | Separating this whitespace change from the next diff.
* sync NEWSAnatol Belski2015-10-181-0/+3
|
* Fixed bug #70689 (Exception handler does not work as expected)Xinchen Hui2015-10-185-12/+30
|
* update NEWSAnatol Belski2015-10-181-0/+5
|
* Fixed Conditional jump or move depends on uninitialised valueXinchen Hui2015-10-181-0/+2
|
* Fixed bug #70709 (SOAP Client generates Segfault)Xinchen Hui2015-10-181-1/+6
|
* Do not create a fake Closure for real Closuresphp-7.0.0RC5Bob Weinand2015-10-142-1/+39
| | | | That is solved by just returning the Closure as is, which is safe due to Closures being immutable objects
* update UPGRADINGAnatol Belski2015-10-131-0/+4
|
* sync NEWSAnatol Belski2015-10-131-0/+38
|
* bump RC versionAnatol Belski2015-10-132-3/+3
|
* update libs_versions.txtAnatol Belski2015-10-131-1/+1
|
* Merge branch 'PHP-7.0' into PHP-7.0.0Anatol Belski2015-10-13100-1208/+2567
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-7.0: (103 commits) Add more tests for closure binding Forbid "fake" closure rebinding increase API versions fork test for ICU 56.1 fork test for ICU-56.1 fix test for ICU-56.1 fix test Double declaration fix stack overflow Generally run all tests in sapi folder by default Fixed bug #70685 Normalize rebinding failures Implemented file_cache_fallback mechanism Improve previous fix Fixed bug #70681 update NEWS update NEWS Fixed bug #70630 (Closure::call/bind() crash with ReflectionFunction->getClosure()) Fixed reference cuntmting for closures (previously we didn't increment reference counter for "internal" closures) Fixed infinity recurion if we create closure on top of other closure. ...
| * Add more tests for closure bindingNikita Popov2015-10-122-1/+209
| |
| * Forbid "fake" closure rebindingDmitry Stogov2015-10-124-9/+21
| |
| * increase API versionsAnatol Belski2015-10-123-3/+3
| |
| * fork test for ICU 56.1Anatol Belski2015-10-122-1/+124
| |
| * fork test for ICU-56.1Anatol Belski2015-10-122-1/+132
| |
| * fix test for ICU-56.1Anatol Belski2015-10-123-1/+100
| |
| * Merge branch 'PHP-5.6' into PHP-7.0Matteo Beccati2015-10-120-0/+0
| |\ | | | | | | | | | | | | * PHP-5.6: fix test
| | * fix testAnatol Belski2015-10-121-0/+4
| | |
| * | Double declarationXinchen Hui2015-10-121-1/+0
| | |
| * | fix stack overflowAnatol Belski2015-10-101-2/+4
| | |
| * | Generally run all tests in sapi folder by defaultBob Weinand2015-10-101-1/+1
| | | | | | | | | | | | Turned out that sapi/phpdbg actually wasn't explicitly included as sapi folders were individually selected
| * | Merge branch 'PHP-5.6' into PHP-7.0Nikita Popov2015-10-102-1/+25
| |\ \ | | |/ | | | | | | | | | Conflicts: Zend/zend_closures.c
| | * Fixed bug #70685Nikita Popov2015-10-103-13/+38
| | | | | | | | | | | | Doing a less intrusive variant of the PHP 7.0 fix for 5.6.
| * | Normalize rebinding failuresNikita Popov2015-10-104-70/+58
| | | | | | | | | | | | | | | | | | | | | Move all rebinding checks into one function to make sure they stay in sync. Normalize return value to be NULL for all rebinding failures, instead of returning an improperly bound closure in some cases.