summaryrefslogtreecommitdiff
path: root/phpdbg_bp.c
diff options
context:
space:
mode:
authorkrakjoe <joe.watkins@live.co.uk>2014-02-17 07:40:35 +0000
committerkrakjoe <joe.watkins@live.co.uk>2014-02-17 07:40:35 +0000
commit1fce0887a32b18f11ff08ab81bc11d4b77992f89 (patch)
tree70a0804285e671f17478895faeb89ca5bf2a472d /phpdbg_bp.c
parent3cabee71ab57020336aa92378e406199dc551397 (diff)
parentf89f66d7620c316e751d5a3335a012070e7de457 (diff)
downloadphp-git-1fce0887a32b18f11ff08ab81bc11d4b77992f89.tar.gz
Merge branch 'master' of https://github.com/krakjoe/phpdbg into lexer
Diffstat (limited to 'phpdbg_bp.c')
-rw-r--r--phpdbg_bp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpdbg_bp.c b/phpdbg_bp.c
index 511d1db57d..609644548f 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);