summaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2017-01-15 11:20:13 +0100
committerPaul Moore <paul@paul-moore.com>2017-03-29 11:30:51 -0400
commit7befb7514e5d53026e9fe4a6548f118a65a20a4f (patch)
treeffee6fe5fd0e80de6a638570818e6395ef0d5100 /security
parent442ca4d656645505346017c37ac137cde680bf38 (diff)
downloadlinux-0-day-7befb7514e5d53026e9fe4a6548f118a65a20a4f.tar.gz
linux-0-day-7befb7514e5d53026e9fe4a6548f118a65a20a4f.tar.xz
selinux: Return directly after a failed kzalloc() in perm_read()
Return directly after a call of the function "kzalloc" failed at the beginning. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security')
-rw-r--r--security/selinux/ss/policydb.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c
index 99ee0ee2d92af..5ca2d26ecf7fe 100644
--- a/security/selinux/ss/policydb.c
+++ b/security/selinux/ss/policydb.c
@@ -1118,10 +1118,9 @@ static int perm_read(struct policydb *p, struct hashtab *h, void *fp)
__le32 buf[2];
u32 len;
- rc = -ENOMEM;
perdatum = kzalloc(sizeof(*perdatum), GFP_KERNEL);
if (!perdatum)
- goto bad;
+ return -ENOMEM;
rc = next_entry(buf, fp, sizeof buf);
if (rc)