diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-01-14 05:00:23 -0500 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2017-03-23 16:25:42 -0400 |
commit | e34cfef901badc0e17c2b296a535e7412ef038f3 (patch) | |
tree | aa6f6370c6c13eee063dd42f2d293a7506910720 /security/selinux/ss/conditional.c | |
parent | f6076f704aa29679fdba114b0f60e71e0884840a (diff) |
selinux: Delete an unnecessary return statement in cond_compute_av()
The script "checkpatch.pl" pointed information out like the following.
WARNING: void function return statements are not generally useful
Thus remove such a statement in the affected function.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/ss/conditional.c')
-rw-r--r-- | security/selinux/ss/conditional.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/security/selinux/ss/conditional.c b/security/selinux/ss/conditional.c index fcfab2635c11..4a3bf29f7565 100644 --- a/security/selinux/ss/conditional.c +++ b/security/selinux/ss/conditional.c | |||
@@ -664,5 +664,4 @@ void cond_compute_av(struct avtab *ctab, struct avtab_key *key, | |||
664 | (node->key.specified & AVTAB_XPERMS)) | 664 | (node->key.specified & AVTAB_XPERMS)) |
665 | services_compute_xperms_drivers(xperms, node); | 665 | services_compute_xperms_drivers(xperms, node); |
666 | } | 666 | } |
667 | return; | ||
668 | } | 667 | } |