diff options
-rw-r--r-- | phpdbg_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpdbg_print.c b/phpdbg_print.c index 5e3129ad7f..7e549a2779 100644 --- a/phpdbg_print.c +++ b/phpdbg_print.c @@ -87,7 +87,7 @@ static inline void phpdbg_print_function_helper(zend_function *method TSRMLS_DC) phpdbg_error("\tFailed to decode opline %16p", opline); } opline++; - } while (++opcode < end); + } while (opcode++ < end); zend_hash_destroy(&vars); } } break; |