From: Joe Perches Date: Tue, 24 Mar 2015 01:01:35 +0000 (-0700) Subject: selinux: fix sel_write_enforce broken return value X-Git-Tag: v3.12.41~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9647fcfbcad58f58edfa9f94aa691106ec29ff9a;p=thirdparty%2Fkernel%2Fstable.git 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 Acked-by: Stephen Smalley [PM: tweaked subject line] Signed-off-by: Paul Moore Signed-off-by: Jiri Slaby --- diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c index 86f969437f5d9..a96bed4db3e8a 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;