]> granicus.if.org Git - php/commitdiff
fix
authorkrakjoe <joe.watkins@live.co.uk>
Wed, 20 Nov 2013 17:48:54 +0000 (17:48 +0000)
committerkrakjoe <joe.watkins@live.co.uk>
Wed, 20 Nov 2013 17:48:54 +0000 (17:48 +0000)
phpdbg_prompt.c

index 48ccc19753579beaaaea01ea62e18cc7bf7594d8..20246cb07ed693c690e90fa92fdac3219b9dd7a1 100644 (file)
@@ -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;
                }