{
if ((EG(in_execution) && EG(active_op_array)) || PHPDBG_G(ops)) {
zend_op_array *ops = EG(active_op_array) ? EG(active_op_array) : PHPDBG_G(ops);
- zend_uint literal =0, count = ops->last_literal-1;
+ int literal =0, count = ops->last_literal-1;
if (ops->function_name) {
if (ops->scope) {
static inline zend_uint phpdbg_decode_literal(zend_op_array *ops, zend_literal *literal TSRMLS_DC) /* {{{ */
{
- zend_uint iter = 0;
+ int iter = 0;
while (iter < ops->last_literal) {
if (literal == &ops->literals[iter]) {
int phpdbg_interactive(TSRMLS_D) /* {{{ */
{
int ret = SUCCESS;
-
+ phpdbg_input_t *input;
+
PHPDBG_G(flags) |= PHPDBG_IS_INTERACTIVE;
- phpdbg_input_t *input = phpdbg_read_input(NULL TSRMLS_CC);
+ input = phpdbg_read_input(NULL TSRMLS_CC);
if (input && input->length > 0L) {
do {