Fixed bug #71165 (-DGC_BENCH=1 doesn't work on PHP7)

This commit is contained in:
Xinchen Hui 2015-12-18 21:52:05 -08:00
parent 1d79011fb9
commit a21b0942fa
2 changed files with 2 additions and 1 deletions

2
NEWS
View File

@ -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).

View File

@ -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 {