diff options
-rw-r--r-- | phpdbg_bp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpdbg_bp.c b/phpdbg_bp.c index 161d9ba683..62f1ab3914 100644 --- a/phpdbg_bp.c +++ b/phpdbg_bp.c @@ -1024,7 +1024,7 @@ static inline phpdbg_breakbase_t *phpdbg_find_conditional_breakpoint(zend_execut zend_try { PHPDBG_G(flags) |= PHPDBG_IN_COND_BP; zend_execute(EG(active_op_array) TSRMLS_CC); - if (i_zend_is_true(retval)) { + if (i_zend_is_true(retval TSRMLS_CC)) { breakpoint = SUCCESS; } } zend_catch { |