From: krakjoe Date: Tue, 18 Feb 2014 09:13:42 +0000 (+0000) Subject: fix #70 X-Git-Tag: php-5.6.0beta2~1^2~37^2~23^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8da9b7e3a2e25ff8cd536200d515cf0d9c01906f;p=php fix #70 --- 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;