summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg_opcode.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2018-02-05 19:41:47 +0300
committerDmitry Stogov <dmitry@zend.com>2018-02-05 19:41:47 +0300
commitca035f26aa296acf553f289e2d459fd052367db2 (patch)
treedcf38faa85759c7c076f3a11371a422ca7f5bee2 /sapi/phpdbg/phpdbg_opcode.c
parent070a0091b39b1196fe66bf2ba3c52ad4533f5497 (diff)
downloadphp-git-ca035f26aa296acf553f289e2d459fd052367db2.tar.gz
Moved "zval.u2.cache_slot" into free room of "zend_op"
Diffstat (limited to 'sapi/phpdbg/phpdbg_opcode.c')
-rw-r--r--sapi/phpdbg/phpdbg_opcode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_opcode.c b/sapi/phpdbg/phpdbg_opcode.c
index 4b3bf4c668..d066674b90 100644
--- a/sapi/phpdbg/phpdbg_opcode.c
+++ b/sapi/phpdbg/phpdbg_opcode.c
@@ -115,7 +115,7 @@ char *phpdbg_decode_opline(zend_op_array *ops, zend_op *opline) /*{{{ */
/* RESULT */
switch (opline->opcode) {
case ZEND_CATCH:
- if (opline->extended_value == ZEND_LAST_CATCH) {
+ if (opline->extended_value & ZEND_LAST_CATCH) {
if (decode[2]) {
efree(decode[2]);
decode[2] = NULL;