projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b4e4686
)
selinux: Return directly after a failed next_entry() in genfs_read()
author
Markus Elfring
<elfring@users.sourceforge.net>
Sat, 14 Jan 2017 15:34:25 +0000
(16:34 +0100)
committer
Paul Moore
<paul@paul-moore.com>
Thu, 23 Mar 2017 21:45:29 +0000
(17:45 -0400)
Return directly after a call of the function "next_entry" 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 bccc9acf6bc507915fef1375de2019f2f1499705..375e304070e1597d97ac2680d24e56741da30402 100644
(file)
--- a/
security/selinux/ss/policydb.c
+++ b/
security/selinux/ss/policydb.c
@@
-2006,7
+2006,7
@@
static int genfs_read(struct policydb *p, void *fp)
rc = next_entry(buf, fp, sizeof(u32));
if (rc)
-
goto out
;
+
return rc
;
nel = le32_to_cpu(buf[0]);
for (i = 0; i < nel; i++) {