mirror of
https://github.com/php/php-src.git
synced 2024-11-27 20:03:40 +08:00
Fixed bug #71165 (-DGC_BENCH=1 doesn't work on PHP7)
This commit is contained in:
parent
1d79011fb9
commit
a21b0942fa
2
NEWS
2
NEWS
@ -3,6 +3,8 @@ PHP NEWS
|
||||
?? Jan 2016 PHP 7.0.2
|
||||
|
||||
- Core:
|
||||
. Fixed bug #71165 (-DGC_BENCH=1 doesn't work on PHP7).
|
||||
(y.uchiyama.1015 at gmail.com)
|
||||
. Fixed bug #71163 (Segmentation Fault: cleanup_unfinished_calls). (Laruence)
|
||||
. Fixed bug #71109 (ZEND_MOD_CONFLICTS("xdebug") doesn't work). (Laruence)
|
||||
. Fixed bug #71105 (Format String Vulnerability in Class Name Error Message).
|
||||
|
@ -983,7 +983,6 @@ ZEND_API void zend_deactivate(void) /* {{{ */
|
||||
fprintf(stderr, " Root Buffered buffer grey\n");
|
||||
fprintf(stderr, " -------- -------- ----------- ------\n");
|
||||
fprintf(stderr, "ZVAL %8d %8d %9d %8d\n", GC_G(zval_possible_root), GC_G(zval_buffered), GC_G(zval_remove_from_buffer), GC_G(zval_marked_grey));
|
||||
fprintf(stderr, "ZOBJ %8d %8d %9d %8d\n", GC_G(zobj_possible_root), GC_G(zobj_buffered), GC_G(zobj_remove_from_buffer), GC_G(zobj_marked_grey));
|
||||
#endif
|
||||
|
||||
zend_try {
|
||||
|
Loading…
Reference in New Issue
Block a user