summaryrefslogtreecommitdiff
path: root/Zend
Commit message (Collapse)AuthorAgeFilesLines
* initialize valid_symbol_table, important for the main threadAnatol Belski2017-02-181-0/+1
| | | | to prevent php_errormsg population on invalid symlol_table
* Disable RTLD_DEEPBIND when compiling with AddressSanitizer (-fsanitize=address).Ondřej Surý2017-02-161-1/+7
| | | | | | | | | | The AddressSanitizer doesn't support RTLD_DEEPBIND resulting in erratic errors when deinitializing phar module and possibly others. Clang use __has_feature() macro to indicate compilation with AddressSanitizer while gcc uses __SANITIZE_ADDRESS__ define. Fixes bug #73677.
* Fixed bug #73989 (PHP 7.1 Segfaults within Symfony test suite)Xinchen Hui2017-02-133-52/+112
|
* Fixed bug #74084 (Out of bound read - zend_mm_alloc_small)Xinchen Hui2017-02-122-19/+67
|
* Fixed typoXinchen Hui2017-02-111-2/+2
|
* Add #ifndef restrictdreamsxin2017-02-081-4/+6
|
* Fix detection of isnan and isinfChristian Schmidt2017-02-082-8/+8
| | | | | | The isnan() and isinf() are C99 macros not functions. Also fix is_infinite(-INF) in case isinf is not defined.
* use some dynamically generated NAN as wellAnatol Belski2017-02-071-1/+1
|
* switch to smart str conversion routine to hide exact NAN typeAnatol Belski2017-02-071-2/+2
| | | | see https://github.com/php/php-src/pull/2356#issuecomment-277564135
* Revert "Fix detection of isnan and isinf"Nikita Popov2017-02-062-9/+8
| | | | This reverts commit 9ea0949f43959ff0cf519e7a10ef9de7a538cde3.
* Fix detection of isnan and isinfChristian Schmidt2017-02-052-8/+9
| | | | | | The isnan() and isinf() are C99 macros not functions. Also fix is_infinite(-INF) in case isinf is not defined.
* Fix bug #73954Andrea Faulds2017-02-052-1/+24
|
* BUG #73998: Numeric properties are not accessible from get_object_varsMitch Hagstrand2017-02-023-2/+43
|
* typoDmitry Stogov2017-02-011-1/+1
|
* fixed macroDmitry Stogov2017-02-011-3/+4
|
* Revert "backport 51e1da6ea1e663908302e162ced1b7a8cb5aee05 into 7.0"Anatol Belski2017-01-311-8/+1
| | | | This reverts commit 8da87563122e4d14208b2827fd6b2807578677ec.
* Fixed #73973 - debug_zval_dump() assertion error for resource consts with ↵andrewnester2017-01-262-12/+4
| | | | --enable-debug
* move decl to correct placeJoe Watkins2017-01-231-1/+2
|
* Fixed #73969 - Fixed segmentation fault when debug_print_backtrace calledandrewnester2017-01-221-6/+11
|
* backport 51e1da6ea1e663908302e162ced1b7a8cb5aee05 into 7.0Anatol Belski2017-01-211-1/+8
|
* Fixed bug #73965 DTrace reported as enabled when disabledRemi Collet2017-01-202-0/+4
|
* Fixed bug #73916 (zend_print_flat_zval_r doesn't consider reference)Xinchen Hui2017-01-132-0/+19
|
* [ast] Fix exporting **= in expansion of assign opSara Golemon2017-01-082-1/+12
| | | | (cherry picked from commit 9c3865eb6a72a6f369ba524c5a87b4896a3a9acb)
* Update copyright headers to 2017Sammy Kaye Powers2017-01-04108-110/+110
|
* remove duplicate testJoe Watkins2017-01-041-4/+0
|
* fix testJoe Watkins2017-01-041-3/+4
|
* Merge branch 'pull-request/1312' into PHP-7.0Joe Watkins2017-01-041-3/+13
|\ | | | | | | | | | | * pull-request/1312: get_defined_functions extra parameter to exclude disabled functions news entry for PR #1312
| * Added "exclude_disabled" argument to "get_defined_functions".Willian Gustavo Veiga2015-06-021-3/+5
| |
| * Fix bug #31875 - get_defined_functions() should not list disabled functions.Willian Gustavo Veiga2015-05-301-1/+9
| |
* | Fix #73832 - leave the table in a safe state if the size is too big.Stanislav Malyshev2017-01-021-1/+1
| |
* | Another try at making concat_003 more reliableNikita Popov2016-12-291-28/+14
| | | | | | | | | | | | Use array_fill() for the array population loop -- this isn't the part that is being tested and on PHP 7.0 w/o opcache this duplicates the inner array a lot.
* | Increase timing quota for small string concat testNikita Popov2016-12-211-3/+3
| | | | | | | | Test is regularly failing on Travis.
* | Fix #73753 - Unpacked Arrays and DuplicationDavid Walker2016-12-212-3/+33
| |
* | Fixed bug #73792 (invalid foreach loop hangs script)Dmitry Stogov2016-12-203-0/+50
| |
* | Fix stack management in ini scannerNikita Popov2016-12-163-2773/+1952
| |
* | Partially fix bug #70492Nikita Popov2016-12-141-1/+1
| | | | | | | | The libmagic portion is missing.
* | Check if PHP is in execution state.Dmitry Stogov2016-12-071-1/+3
| |
* | Fixed bug #73663 ("Invalid opcode 65/16/8" occurs with a variable created ↵Xinchen Hui2016-12-062-1/+83
| | | | | | | | with list())
* | Fixed behavior of failing compound assignments (they shouldn't change the ↵Dmitry Stogov2016-12-052-36/+207
| | | | | | | | source value when exception thrown during type converion).
* | Fix PHP-7.0 build (wrong fix for the branch)Bob Weinand2016-12-032-10/+20
| |
* | Fix leak when using $this outside of object contextBob Weinand2016-12-033-0/+22
| |
* | Fix leak in shift_right_functionNikita Popov2016-12-021-1/+1
| |
* | Fix test of wrong operator in self_xor.phptBob Weinand2016-12-021-5/+5
| |
* | Eliminated useless exception checkDmitry Stogov2016-12-022-2/+4
| |
* | Fixed behavior of failing compound assignments (they shouldn't change the ↵Dmitry Stogov2016-12-022-0/+28
| | | | | | | | source value when exception thrown during type converion).
* | Fixed behavior of failing compound assignments (they shouldn't change the ↵Dmitry Stogov2016-12-022-20/+64
| | | | | | | | source value).
* | Fixed possible memory leak in &=, |=, ^=.Dmitry Stogov2016-12-024-1/+40
| |
* | Fix valgrind issue when throwing due to yield from aborted generatorBob Weinand2016-12-011-0/+1
| |
* | Fixed bug #73586 (php_user_filter::$stream is not set to the stream the ↵Dmitry Stogov2016-11-281-0/+10
| | | | | | | | filter is working on).
* | Fixed calling generators through magic __call()Dmitry Stogov2016-11-283-20/+64
| |