Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security

Pull selinux bugfix from James Morris.

Fix broken return value.

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security:
selinux: fix sel_write_enforce broken return value

+1 -1
+1 -1
security/selinux/selinuxfs.c
··· 152 152 goto out; 153 153 154 154 /* No partial writes. */ 155 - length = EINVAL; 155 + length = -EINVAL; 156 156 if (*ppos != 0) 157 157 goto out; 158 158