diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-01-14 14:00:02 +0100 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2017-03-23 17:21:26 -0400 |
commit | b4e4686f65a3092f63ed01c887d9f56714d29f4a (patch) | |
tree | c3b45a8e9cf4b917cad3f9344248f4e025ea444e /security | |
parent | ad10a10567e243425d7be35a3d950709371fa048 (diff) | |
download | linux-b4e4686f65a3092f63ed01c887d9f56714d29f4a.tar.gz linux-b4e4686f65a3092f63ed01c887d9f56714d29f4a.tar.bz2 linux-b4e4686f65a3092f63ed01c887d9f56714d29f4a.zip |
selinux: Delete an unnecessary return statement in policydb_destroy()
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')
-rw-r--r-- | security/selinux/ss/policydb.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c index 66b9a357fa1b..bccc9acf6bc5 100644 --- a/security/selinux/ss/policydb.c +++ b/security/selinux/ss/policydb.c @@ -880,8 +880,6 @@ void policydb_destroy(struct policydb *p) ebitmap_destroy(&p->filename_trans_ttypes); ebitmap_destroy(&p->policycaps); ebitmap_destroy(&p->permissive_map); - - return; } /* |