From 7c7b9184b1fdf7add1715079f22241bc1185fcb0 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Sun, 5 Oct 2014 13:02:58 +0400 Subject: Fixed list() behavior inconsistency (string handling is disabled for all cases, ArrayAccess objects handling is enabled for all cases, ZEND_FETCH_DIM_TMP_VAR opcode is renamed into ZEND_FETCH_LIST, ZEND_FETCH_ADD_LOCK flag is removed). --- sapi/phpdbg/phpdbg_opcode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sapi/phpdbg/phpdbg_opcode.c') diff --git a/sapi/phpdbg/phpdbg_opcode.c b/sapi/phpdbg/phpdbg_opcode.c index 125a85fe72..f33b1378bf 100644 --- a/sapi/phpdbg/phpdbg_opcode.c +++ b/sapi/phpdbg/phpdbg_opcode.c @@ -280,7 +280,7 @@ const char *phpdbg_decode_opcode(zend_uchar opcode) /* {{{ */ CASE(ZEND_FETCH_UNSET); CASE(ZEND_FETCH_DIM_UNSET); CASE(ZEND_FETCH_OBJ_UNSET); - CASE(ZEND_FETCH_DIM_TMP_VAR); + CASE(ZEND_FETCH_LIST); CASE(ZEND_FETCH_CONSTANT); CASE(ZEND_GOTO); CASE(ZEND_EXT_STMT); -- cgit v1.2.1