mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
Kernel: Fix bug in process termination on missing signal handler.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user