projects
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d4943f0
)
tg-hurdsig-boot-fix
author
GNU Libc Maintainers
<debian-glibc@lists.debian.org>
Wed, 29 Nov 2017 03:00:21 +0000
(
03:00
+0000)
committer
Peter Michael Green
<plugwash@raspbian.org>
Wed, 29 Nov 2017 03:00:21 +0000
(
03:00
+0000)
2012-09-05 Richard Braun <rbraun@sceen.net>
* hurd/hurdsig.c (sigstate_is_global_rcv): Do not return true
if _HURD_GLOBAL_SIGSTATE is null.
Gbp-Pq: Topic hurd-i386
Gbp-Pq: Name tg-hurdsig-boot-fix.diff
hurd/hurdsig.c
patch
|
blob
|
history
diff --git
a/hurd/hurdsig.c
b/hurd/hurdsig.c
index e72fb8a6e248a9b7804e884a0baa0f26df48135e..449157037de0162cf9ac88a929d1e7fcf348084b 100644
(file)
--- a/
hurd/hurdsig.c
+++ b/
hurd/hurdsig.c
@@
-178,7
+178,8
@@
compat_symbol (libc, __hurd_sigstate_set_global_rcv_2_13, _hurd_sigstate_set_glo
static int
sigstate_is_global_rcv (const struct hurd_sigstate *ss)
{
- return ss->actions[0].sa_handler == SIG_IGN;
+ return (_hurd_global_sigstate != NULL)
+ && (ss->actions[0].sa_handler == SIG_IGN);
}
/* Lock/unlock a hurd_sigstate structure. If the accessors below require