aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--security/selinux/ss/policydb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/selinux/ss/policydb.c b/security/selinux/ss/policydb.c
index 3a29704be8ce..aa5a2fd1cc09 100644
--- a/security/selinux/ss/policydb.c
+++ b/security/selinux/ss/policydb.c
@@ -1624,11 +1624,11 @@ static int role_bounds_sanity_check(void *key, void *datum, void *datap)
1624 1624
1625static int type_bounds_sanity_check(void *key, void *datum, void *datap) 1625static int type_bounds_sanity_check(void *key, void *datum, void *datap)
1626{ 1626{
1627 struct type_datum *upper, *type; 1627 struct type_datum *upper;
1628 struct policydb *p = datap; 1628 struct policydb *p = datap;
1629 int depth = 0; 1629 int depth = 0;
1630 1630
1631 upper = type = datum; 1631 upper = datum;
1632 while (upper->bounds) { 1632 while (upper->bounds) {
1633 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) { 1633 if (++depth == POLICYDB_BOUNDS_MAXDEPTH) {
1634 printk(KERN_ERR "SELinux: type %s: " 1634 printk(KERN_ERR "SELinux: type %s: "