1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-09-02 16:01:20 +03:00

2001-07-24 Igor Khavkine <i_khavki@alcor.concordia.ca>

* hurd/hurdsig.c (_hurdsig_init): Fix incorrect initialization
        of pending signals.
This commit is contained in:
Roland McGrath
2001-07-24 04:59:07 +00:00
parent beafb7521f
commit 760b705623

View File

@@ -1229,7 +1229,7 @@ _hurdsig_init (const int *intarray, size_t intarraysize)
if (intarraysize > INIT_SIGMASK)
ss->blocked = intarray[INIT_SIGMASK];
if (intarraysize > INIT_SIGPENDING)
ss->blocked = intarray[INIT_SIGPENDING];
ss->pending = intarray[INIT_SIGPENDING];
if (intarraysize > INIT_SIGIGN && intarray[INIT_SIGIGN] != 0)
{
int signo;