diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2014-02-16 17:09:15 +0100 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2014-02-16 17:09:15 +0100 |
commit | 7b44890ac476cc45ff107048a2efbb72298b5a72 (patch) | |
tree | 2e6a8b343182df5c60861019916649f2b2919996 /phpdbg_bp.c | |
parent | 0dc1072a190c10f0ee1be67103549c1ec79436ea (diff) | |
parent | 21c973d3de5d0b3d3ce8377dfdd07bd3940d72d1 (diff) | |
download | php-git-7b44890ac476cc45ff107048a2efbb72298b5a72.tar.gz |
Merge pull request #73 from TerryE/new-help
New help updates
Diffstat (limited to 'phpdbg_bp.c')
-rw-r--r-- | phpdbg_bp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpdbg_bp.c b/phpdbg_bp.c index 511d1db57d..1e85f039a5 100644 --- a/phpdbg_bp.c +++ b/phpdbg_bp.c @@ -324,9 +324,9 @@ PHPDBG_API void phpdbg_set_breakpoint_method(const char *class_name, const char PHPDBG_BREAK_MAPPING(new_break.id, class_table); } else { phpdbg_notice("Breakpoint exists at %s::%s", class_name, func_name); - } + } - efree(lcname); + efree(lcname); } /* }}} */ PHPDBG_API void phpdbg_set_breakpoint_opline(zend_ulong opline TSRMLS_DC) /* {{{ */ @@ -992,7 +992,7 @@ static inline phpdbg_breakbase_t *phpdbg_find_conditional_breakpoint(zend_execut for (zend_hash_internal_pointer_reset_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], &position); zend_hash_get_current_data_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], (void*)&bp, &position) == SUCCESS; - zend_hash_move_forward_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], &position)) { + zend_hash_move_forward_ex(&PHPDBG_G(bp)[PHPDBG_BREAK_COND], &position)) { zval *retval = NULL; int orig_interactive = CG(interactive); zval **orig_retval = EG(return_value_ptr_ptr); |