mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-10 16:42:59 +03:00
don't fail pthread_sigmask/sigprocmask on invalid how when set is null
the resolution of Austin Group issue #1132 changes the requirement to fail so that it only applies when the set argument (new mask) is non-null. this change was made for consistency with the description, which specified "if set is a null pointer, the value of the argument how is not significant".
This commit is contained in:
parent
a63c0104e4
commit
1ec71c531e
@ -5,7 +5,7 @@
|
||||
int pthread_sigmask(int how, const sigset_t *restrict set, sigset_t *restrict old)
|
||||
{
|
||||
int ret;
|
||||
if ((unsigned)how - SIG_BLOCK > 2U) return EINVAL;
|
||||
if (set && (unsigned)how - SIG_BLOCK > 2U) return EINVAL;
|
||||
ret = -__syscall(SYS_rt_sigprocmask, how, set, old, _NSIG/8);
|
||||
if (!ret && old) {
|
||||
if (sizeof old->__bits[0] == 8) {
|
||||
|
Loading…
Reference in New Issue
Block a user