projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ea6e2f7
)
selinux: Return directly after a failed kzalloc() in class_read()
author
Markus Elfring
<elfring@users.sourceforge.net>
Sat, 14 Jan 2017 21:30:51 +0000
(22:30 +0100)
committer
Paul Moore
<paul@paul-moore.com>
Wed, 29 Mar 2017 15:24:58 +0000
(11:24 -0400)
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>
security/selinux/ss/policydb.c
patch
|
blob
|
history
diff --git
a/security/selinux/ss/policydb.c
b/security/selinux/ss/policydb.c
index 30f29c669e32035fb568e838358558ec6d16844d..edf173ed05f853aad78a720a10ac31f4fb2f671d 100644
(file)
--- a/
security/selinux/ss/policydb.c
+++ b/
security/selinux/ss/policydb.c
@@
-1318,10
+1318,9
@@
static int class_read(struct policydb *p, struct hashtab *h, void *fp)
u32 len, len2, ncons, nel;
int i, rc;
- rc = -ENOMEM;
cladatum = kzalloc(sizeof(*cladatum), GFP_KERNEL);
if (!cladatum)
-
goto bad
;
+
return -ENOMEM
;
rc = next_entry(buf, fp, sizeof(u32)*6);
if (rc)