aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorEric Paris <eparis@redhat.com>2012-04-04 13:47:11 -0400
committerBen Hutchings <ben@decadent.org.uk>2012-05-31 00:43:21 +0100
commitf41798196161e37579b3f7c3d3df54a01393500c (patch)
treefe33e7357e9ba32f8ee2f8a39716e84bb00499d2 /security
parenta3af3cfd49857172f602d2ad6bc55386c8943187 (diff)
downloadkernel_samsung_smdk4412-f41798196161e37579b3f7c3d3df54a01393500c.zip
kernel_samsung_smdk4412-f41798196161e37579b3f7c3d3df54a01393500c.tar.gz
kernel_samsung_smdk4412-f41798196161e37579b3f7c3d3df54a01393500c.tar.bz2
SELinux: if sel_make_bools errors don't leave inconsistent state
commit 154c50ca4eb9ae472f50b6a481213e21ead4457d upstream. We reset the bool names and values array to NULL, but do not reset the number of entries in these arrays to 0. If we error out and then get back into this function we will walk these NULL pointers based on the belief that they are non-zero length. Signed-off-by: Eric Paris <eparis@redhat.com> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'security')
-rw-r--r--security/selinux/selinuxfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c
index f466587..b4f802d 100644
--- a/security/selinux/selinuxfs.c
+++ b/security/selinux/selinuxfs.c
@@ -1238,6 +1238,7 @@ static int sel_make_bools(void)
kfree(bool_pending_names[i]);
kfree(bool_pending_names);
kfree(bool_pending_values);
+ bool_num = 0;
bool_pending_names = NULL;
bool_pending_values = NULL;