summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-02-22 23:11:54 +0000
committerRoland McGrath <roland@gnu.org>1995-02-22 23:11:54 +0000
commit0677a80cdf98418cfe641d27cfc492d7459c5b45 (patch)
tree3901486a25d40440ec9b22ecbd4f6c32c4e2f9f2 /hurd
parent50843ff068aae5b1ff58581eddd3bd107e99114b (diff)
* hurd/hurdsig.c (_hurd_internal_post_signal): Ignore preempter
elts with null handlers.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/hurdsig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c
index 2c6f6a17d2..d93d4c2a8d 100644
--- a/hurd/hurdsig.c
+++ b/hurd/hurdsig.c
@@ -472,7 +472,7 @@ _hurd_internal_post_signal (struct hurd_sigstate *ss,
can arrive during critical sections. */
__mutex_lock (&_hurd_signal_preempt_lock);
for (pe = _hurd_signal_preempt[signo]; pe != NULL; pe = pe->next)
- if (sigcode >= pe->first && sigcode <= pe->last)
+ if (pe->handler && sigcode >= pe->first && sigcode <= pe->last)
{
preempt = pe->handler;
break;