forked from Minki/linux
tiny signalfd cleanup
This is probably a leftover from a time when the return wasn't there yet. Now the extra assignment is just irritating. Signed-off-by: Ulrich Drepper <drepper@redhat.com> Cc: Davide Libenzi <davidel@xmailserver.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
87588dd666
commit
f50cadaa8f
@ -320,7 +320,7 @@ asmlinkage long sys_signalfd(int ufd, sigset_t __user *user_mask, size_t sizemas
|
||||
|
||||
if (sizemask != sizeof(sigset_t) ||
|
||||
copy_from_user(&sigmask, user_mask, sizeof(sigmask)))
|
||||
return error = -EINVAL;
|
||||
return -EINVAL;
|
||||
sigdelsetmask(&sigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
|
||||
signotset(&sigmask);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user