Skip to content

Commit

Permalink
Fixed bug #71165 (-DGC_BENCH=1 doesn't work on PHP7)
Browse files Browse the repository at this point in the history
  • Loading branch information
laruence committed Dec 19, 2015
1 parent 1d79011 commit a21b094
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
1 change: 0 additions & 1 deletion Zend/zend.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit a21b094

Please sign in to comment.