aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2015-03-23 18:01:35 -0700
committerBen Hutchings <ben@decadent.org.uk>2015-05-09 23:16:32 +0100
commit49c0f35e03dd283c759f71f3c1324c8112caa9a2 (patch)
treed8db3d45dfc26598dbbfd6f7972bb904db196d7e /security
parentfdb966911e4c273bdb1a7988c128f6a13d3b309d (diff)
downloadkernel_samsung_smdk4412-49c0f35e03dd283c759f71f3c1324c8112caa9a2.zip
kernel_samsung_smdk4412-49c0f35e03dd283c759f71f3c1324c8112caa9a2.tar.gz
kernel_samsung_smdk4412-49c0f35e03dd283c759f71f3c1324c8112caa9a2.tar.bz2
selinux: fix sel_write_enforce broken return value
commit 6436a123a147db51a0b06024a8350f4c230e73ff upstream. Return a negative error value like the rest of the entries in this function. Signed-off-by: Joe Perches <joe@perches.com> Acked-by: Stephen Smalley <sds@tycho.nsa.gov> [PM: tweaked subject line] Signed-off-by: Paul Moore <pmoore@redhat.com> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'security')
-rw-r--r--security/selinux/selinuxfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c
index 4dd8dcf..bac8928 100644
--- a/security/selinux/selinuxfs.c
+++ b/security/selinux/selinuxfs.c
@@ -150,7 +150,7 @@ static ssize_t sel_write_enforce(struct file *file, const char __user *buf,
goto out;
/* No partial writes. */
- length = EINVAL;
+ length = -EINVAL;
if (*ppos != 0)
goto out;