summaryrefslogtreecommitdiff
path: root/phpdbg_print.c
diff options
context:
space:
mode:
authorkrakjoe <joe.watkins@live.co.uk>2014-02-18 09:13:42 +0000
committerkrakjoe <joe.watkins@live.co.uk>2014-02-18 09:13:42 +0000
commit8da9b7e3a2e25ff8cd536200d515cf0d9c01906f (patch)
tree98be5098db581043c6ab1fbb9eeb800d3471029b /phpdbg_print.c
parent791828d00cf393f2fd0d1b49699b2b4dd13be339 (diff)
downloadphp-git-8da9b7e3a2e25ff8cd536200d515cf0d9c01906f.tar.gz
fix #70
Diffstat (limited to 'phpdbg_print.c')
-rw-r--r--phpdbg_print.c2
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;