summaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2017-01-15 11:15:19 +0100
committerPaul Moore <paul@paul-moore.com>2017-03-29 11:29:11 -0400
commit442ca4d656645505346017c37ac137cde680bf38 (patch)
treec6e88aeb2b32fd09fd3b99f367040ac3df00840b /security
parentdf4a14dfb484f95d81126e481e66b6e22eec49e8 (diff)
downloadlinux-0-day-442ca4d656645505346017c37ac137cde680bf38.tar.gz
linux-0-day-442ca4d656645505346017c37ac137cde680bf38.tar.xz
selinux: Return directly after a failed kzalloc() in common_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 edf173ed05f85..99ee0ee2d92af 100644
--- a/security/selinux/ss/policydb.c
+++ b/security/selinux/ss/policydb.c
@@ -1152,10 +1152,9 @@ static int common_read(struct policydb *p, struct hashtab *h, void *fp)
u32 len, nel;
int i, rc;
- rc = -ENOMEM;
comdatum = kzalloc(sizeof(*comdatum), GFP_KERNEL);
if (!comdatum)
- goto bad;
+ return -ENOMEM;
rc = next_entry(buf, fp, sizeof buf);
if (rc)