From 17baeaa9325530947c96c06df32b20f47f9859da Mon Sep 17 00:00:00 2001 From: krakjoe Date: Wed, 20 Nov 2013 17:48:54 +0000 Subject: [PATCH] fix --- phpdbg_prompt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpdbg_prompt.c b/phpdbg_prompt.c index 48ccc19753..20246cb07e 100644 --- a/phpdbg_prompt.c +++ b/phpdbg_prompt.c @@ -1212,7 +1212,8 @@ zend_vm_enter: /* allow conditional breakpoints and initialization to access the vm uninterrupted */ - if (PHPDBG_G(flags) & PHPDBG_IN_COND_BP|PHPDBG_IS_INITIALIZING) { + if ((PHPDBG_G(flags) & PHPDBG_IN_COND_BP) || + (PHPDBG_G(flags) & PHPDBG_IS_INITIALIZING)) { /* skip possible breakpoints */ goto next; } -- 2.50.1