diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2013-12-18 11:08:32 +0100 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2013-12-18 11:08:32 +0100 |
commit | 3043bd285cbb7899eedc078033f62fc3a0eda866 (patch) | |
tree | 9527c517cc8e2e33d327294f71dce2d13f41ab7c | |
parent | 94d5334bca19d02b65fb9d0e79cfe41f04e5b874 (diff) | |
parent | ef89fe37ca9fa6b1b096033a610830d08cf8c85e (diff) | |
download | php-git-3043bd285cbb7899eedc078033f62fc3a0eda866.tar.gz |
Merge branch 'master' of https://github.com/krakjoe/phpdbg
-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 { |