Commit b4e4686f authored by Markus Elfring's avatar Markus Elfring Committed by Paul Moore
Browse files

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: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Signed-off-by: default avatarPaul Moore <paul@paul-moore.com>
parent ad10a105
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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;
}

/*