diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-01-15 05:20:13 -0500 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2017-03-29 11:30:51 -0400 |
commit | 7befb7514e5d53026e9fe4a6548f118a65a20a4f (patch) | |
tree | ffee6fe5fd0e80de6a638570818e6395ef0d5100 /security | |
parent | 442ca4d656645505346017c37ac137cde680bf38 (diff) |
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.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c index 99ee0ee2d92a..5ca2d26ecf7f 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) | |||
1118 | __le32 buf[2]; | 1118 | __le32 buf[2]; |
1119 | u32 len; | 1119 | u32 len; |
1120 | 1120 | ||
1121 | rc = -ENOMEM; | ||
1122 | perdatum = kzalloc(sizeof(*perdatum), GFP_KERNEL); | 1121 | perdatum = kzalloc(sizeof(*perdatum), GFP_KERNEL); |
1123 | if (!perdatum) | 1122 | if (!perdatum) |
1124 | goto bad; | 1123 | return -ENOMEM; |
1125 | 1124 | ||
1126 | rc = next_entry(buf, fp, sizeof buf); | 1125 | rc = next_entry(buf, fp, sizeof buf); |
1127 | if (rc) | 1126 | if (rc) |