mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
Kernel: Fix bug in process termination on missing signal handler.
This commit is contained in:
parent
ff4d6afb60
commit
2159d6bf76
Notes:
sideshowbarker
2024-07-19 15:57:46 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/2159d6bf768
1 changed files with 1 additions and 1 deletions
|
@ -793,7 +793,7 @@ bool Process::dispatch_signal(byte signal)
|
|||
if (handler_laddr.is_null()) {
|
||||
// FIXME: Is termination really always the appropriate action?
|
||||
terminate_due_to_signal(signal);
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
m_pending_signals &= ~(1 << signal);
|
||||
|
|
Loading…
Add table
Reference in a new issue