aboutsummaryrefslogtreecommitdiffstats
path: root/security/selinux/ss
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2017-01-14 14:00:02 +0100
committerPaul Moore <paul@paul-moore.com>2017-03-23 17:21:26 -0400
commitb4e4686f65a3092f63ed01c887d9f56714d29f4a (patch)
treec3b45a8e9cf4b917cad3f9344248f4e025ea444e /security/selinux/ss
parentselinux: Use kcalloc() in policydb_index() (diff)
downloadlinux-dev-b4e4686f65a3092f63ed01c887d9f56714d29f4a.tar.xz
linux-dev-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/selinux/ss')
-rw-r--r--security/selinux/ss/policydb.c2
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;
}
/*