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:
549fe69
)
selinux: Return directly after a failed kzalloc() in role_read()
author
Markus Elfring
<elfring@users.sourceforge.net>
Sat, 14 Jan 2017 21:20:25 +0000
(22:20 +0100)
committer
Paul Moore
<paul@paul-moore.com>
Wed, 29 Mar 2017 15:22:12 +0000
(11:22 -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 fd58de5a83adf61d2560a30cc74e788c605150b3..30f29c669e32035fb568e838358558ec6d16844d 100644
(file)
--- a/
security/selinux/ss/policydb.c
+++ b/
security/selinux/ss/policydb.c
@@
-1412,10
+1412,9
@@
static int role_read(struct policydb *p, struct hashtab *h, void *fp)
__le32 buf[3];
u32 len;
- rc = -ENOMEM;
role = kzalloc(sizeof(*role), GFP_KERNEL);
if (!role)
-
goto bad
;
+
return -ENOMEM
;
if (p->policyvers >= POLICYDB_VERSION_BOUNDARY)
to_read = 3;