summaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2015-03-23 18:01:35 -0700
committerLuis Henriques <luis.henriques@canonical.com>2015-04-10 10:04:04 +0100
commitd4af55bd8e4f9151aecbeace0446aa8d272841c9 (patch)
treed167da308903500e85c382729bb078aedb6fdabd /security
parent69528942ee37ff157fd8ce9344634e3481cb1a85 (diff)
downloadlinux-stable-d4af55bd8e4f9151aecbeace0446aa8d272841c9.tar.gz
linux-stable-d4af55bd8e4f9151aecbeace0446aa8d272841c9.tar.bz2
linux-stable-d4af55bd8e4f9151aecbeace0446aa8d272841c9.zip
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: Luis Henriques <luis.henriques@canonical.com>
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 33db1ad4fd10..138949a31eab 100644
--- a/security/selinux/selinuxfs.c
+++ b/security/selinux/selinuxfs.c
@@ -152,7 +152,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;