summaryrefslogtreecommitdiff
path: root/phpdbg_cmd.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2014-01-18 19:24:22 -0500
committerBob Weinand <bobwei9@hotmail.com>2014-01-18 19:24:22 -0500
commitf27be2fded6b75cac1b13bd237c3ae0d8238a40d (patch)
treec386e6b9bfb49e56faa3da454e10e41c271b5a49 /phpdbg_cmd.c
parent992a8d0411535811006c1ba2be4723127995a88f (diff)
downloadphp-git-f27be2fded6b75cac1b13bd237c3ae0d8238a40d.tar.gz
Fixed order of instructions...
Diffstat (limited to 'phpdbg_cmd.c')
-rw-r--r--phpdbg_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpdbg_cmd.c b/phpdbg_cmd.c
index 69585a720f..dee3b6da19 100644
--- a/phpdbg_cmd.c
+++ b/phpdbg_cmd.c
@@ -657,9 +657,9 @@ 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(lparam) = param;
PHPDBG_G(lcmd) = (phpdbg_command_t *)command;
rc = command->handler(&param, input TSRMLS_CC);