diff options
Diffstat (limited to 'libc/sysdeps/linux/alpha/sigprocmask.c')
-rw-r--r-- | libc/sysdeps/linux/alpha/sigprocmask.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/alpha/sigprocmask.c b/libc/sysdeps/linux/alpha/sigprocmask.c index f5e3c8d91..5728418b5 100644 --- a/libc/sysdeps/linux/alpha/sigprocmask.c +++ b/libc/sysdeps/linux/alpha/sigprocmask.c @@ -51,10 +51,9 @@ sigprocmask (int how, const sigset_t *set, sigset_t *oset) if (oset) { + if (_SIGSET_NWORDS > 1) + memset(oset, 0, sizeof(*oset)); oset->__val[0] = result; - result = _SIGSET_NWORDS; - while (--result > 0) - oset->__val[result] = 0; } return 0; } |