mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00: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: 2159d6bf76
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
Add a link
Reference in a new issue