diff options
author | Roland McGrath <roland@gnu.org> | 1995-02-22 23:11:54 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-02-22 23:11:54 +0000 |
commit | 0677a80cdf98418cfe641d27cfc492d7459c5b45 (patch) | |
tree | 3901486a25d40440ec9b22ecbd4f6c32c4e2f9f2 /hurd | |
parent | 50843ff068aae5b1ff58581eddd3bd107e99114b (diff) | |
download | glibc-0677a80cdf98418cfe641d27cfc492d7459c5b45.tar.gz glibc-0677a80cdf98418cfe641d27cfc492d7459c5b45.tar.xz glibc-0677a80cdf98418cfe641d27cfc492d7459c5b45.zip |
* hurd/hurdsig.c (_hurd_internal_post_signal): Ignore preempter
elts with null handlers.
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/hurdsig.c | 2 |
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; |