diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2014-01-18 13:18:28 -0500 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2014-01-18 13:18:28 -0500 |
commit | a1f592565254a991efe80a3f910733fbb29813fc (patch) | |
tree | c94e19e21bc287b64e8b3433a8dc15064ba7192d | |
parent | 2712d7e2248ab91015502d648c9c65d8e5627e69 (diff) | |
download | php-git-a1f592565254a991efe80a3f910733fbb29813fc.tar.gz |
Fixed that for example "run" is only set as last cmd after the whole execution
-rw-r--r-- | phpdbg_cmd.c | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/phpdbg_cmd.c b/phpdbg_cmd.c index 9f052d6f6f..21e07c88df 100644 --- a/phpdbg_cmd.c +++ b/phpdbg_cmd.c @@ -582,6 +582,8 @@ PHPDBG_API int phpdbg_do_cmd(const phpdbg_command_t *command, phpdbg_input_t *in (command->alias == *input->argv[0]->string))) { phpdbg_param_t param; + phpdbg_command_t *initial_last_cmd; + phpdbg_param_t initial_last_param; param.type = EMPTY_PARAM; @@ -644,15 +646,20 @@ PHPDBG_API int phpdbg_do_cmd(const phpdbg_command_t *command, phpdbg_input_t *in } } + PHPDBG_G(lparam) = param; + initial_last_param = PHPDBG_G(lparam); + initial_last_cmd = (phpdbg_command_t *)PHPDBG_G(lcmd); + PHPDBG_G(lcmd) = (phpdbg_command_t *)command; + rc = command->handler(¶m, input TSRMLS_CC); /* only set last command when it is worth it! */ - if ((rc != FAILURE) && - !(PHPDBG_G(flags) & PHPDBG_IS_INITIALIZING)) { - PHPDBG_G(lcmd) = (phpdbg_command_t*) command; - phpdbg_clear_param( - &PHPDBG_G(lparam) TSRMLS_CC); - PHPDBG_G(lparam) = param; + if (rc != FAILURE && !(PHPDBG_G(flags) & PHPDBG_IS_INITIALIZING)) { + phpdbg_clear_param(&initial_last_param TSRMLS_CC); + } else if (PHPDBG_G(lcmd) == command && !memcmp(&PHPDBG_G(lparam),& initial_last_param, sizeof(phpdbg_param_t))) { + PHPDBG_G(lparam) = initial_last_param; + PHPDBG_G(lcmd) = initial_last_cmd; + phpdbg_clear_param(¶m TSRMLS_CC); } break; } |