diff options
author | krakjoe <joe.watkins@live.co.uk> | 2014-02-18 09:13:50 +0000 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2014-02-18 09:13:50 +0000 |
commit | 29e74ebf650dd11a0c83b980b21ee39ee5720ca6 (patch) | |
tree | 530ee277870f0b029e80951ff1edb3a01ef36000 /phpdbg_print.c | |
parent | 07dafa8940cf77ba92507fdae6f0cf6fc3f14165 (diff) | |
parent | 8da9b7e3a2e25ff8cd536200d515cf0d9c01906f (diff) | |
download | php-git-29e74ebf650dd11a0c83b980b21ee39ee5720ca6.tar.gz |
Merge branch 'master' of https://github.com/krakjoe/phpdbg into lexer
Diffstat (limited to 'phpdbg_print.c')
-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; |