From f27be2fded6b75cac1b13bd237c3ae0d8238a40d Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Sat, 18 Jan 2014 19:24:22 -0500 Subject: [PATCH] Fixed order of instructions... --- phpdbg_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(¶m, input TSRMLS_CC); -- 2.40.0