We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e289dc4 commit cf227dfCopy full SHA for cf227df
phpdbg.c
@@ -446,8 +446,8 @@ static inline void phpdbg_sigint_handler(int signo) /* {{{ */
446
TSRMLS_FETCH();
447
448
if (EG(in_execution)) {
449
- /* we don't want to set signalled while phpdbg is interactive */
450
- if (!(PHPDBG_G(flags) & PHPDBG_IS_INTERACTIVE)) {
+ /* we don't want to set signalled while phpdbg is not interactive */
+ if (PHPDBG_G(flags) & PHPDBG_IS_INTERACTIVE) {
451
PHPDBG_G(flags) |= PHPDBG_IS_SIGNALED;
452
}
453
} else {
0 commit comments