aboutsummaryrefslogtreecommitdiffstats
path: root/security/selinux
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2017-01-14 21:20:43 +0100
committerPaul Moore <paul@paul-moore.com>2017-03-29 09:54:48 -0400
commit7f6d0ad8b771a4936f448180de3bbfad92be34dc (patch)
treef89536bb940bc062bc704cdf503f5f23159958b8 /security/selinux
parentselinux: Delete an unnecessary variable initialisation in range_read() (diff)
downloadlinux-dev-7f6d0ad8b771a4936f448180de3bbfad92be34dc.tar.xz
linux-dev-7f6d0ad8b771a4936f448180de3bbfad92be34dc.zip
selinux: Return directly after a failed kzalloc() in cat_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/selinux')
-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 a8389396e9a9..36285d12c2e9 100644
--- a/security/selinux/ss/policydb.c
+++ b/security/selinux/ss/policydb.c
@@ -1637,10 +1637,9 @@ static int cat_read(struct policydb *p, struct hashtab *h, void *fp)
__le32 buf[3];
u32 len;
- rc = -ENOMEM;
catdatum = kzalloc(sizeof(*catdatum), GFP_ATOMIC);
if (!catdatum)
- goto bad;
+ return -ENOMEM;
rc = next_entry(buf, fp, sizeof buf);
if (rc)