mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fixed bug #70776 (Simple SIGINT does not have any effect)
This commit is contained in:
parent
6d91772c2f
commit
e93eaee164
2 changed files with 5 additions and 0 deletions
1
NEWS
1
NEWS
|
@ -23,6 +23,7 @@ PHP NEWS
|
|||
. Add -s command line option / stdin command for reading script from stdin.
|
||||
(Bob)
|
||||
. Ignore non-executable opcodes in line mode of phpdbg_end_oplog(). (Bob)
|
||||
. Fixed bug #70776 (Simple SIGINT does not have any effect). (Bob)
|
||||
|
||||
- Session:
|
||||
. Fixed bug #73273 (session_unset() empties values from all variables in which
|
||||
|
|
|
@ -1140,6 +1140,10 @@ static inline void phpdbg_sigint_handler(int signo) /* {{{ */
|
|||
}
|
||||
} else {
|
||||
PHPDBG_G(flags) |= PHPDBG_IS_SIGNALED;
|
||||
if (PHPDBG_G(flags) & PHPDBG_PREVENT_INTERACTIVE) {
|
||||
PHPDBG_G(flags) |= PHPDBG_HAS_PAGINATION;
|
||||
PHPDBG_G(flags) &= ~PHPDBG_PREVENT_INTERACTIVE;
|
||||
}
|
||||
}
|
||||
}
|
||||
} /* }}} */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue