Skip to content

Commit

Permalink
Fix ZEND_DEBUG condition
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Mar 18, 2016
1 parent 69c9be5 commit fd95555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Zend/zend_execute_API.c
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ void shutdown_executor(void) /* {{{ */

zend_shutdown_fpu();

#ifdef ZEND_DEBUG
#if ZEND_DEBUG
if (EG(ht_iterators_used) && !CG(unclean_shutdown)) {
zend_error(E_WARNING, "Leaked %" PRIu32 " hashtable iterators", EG(ht_iterators_used));
}
Expand Down

0 comments on commit fd95555

Please sign in to comment.