diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-10-14 11:38:56 -0400 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2017-10-16 18:40:09 -0400 |
commit | 5794ed762ac2125299644494766704da94168ec0 (patch) | |
tree | 7e222e02ea0f972eb3eafa3365bcde11f009559a /security/selinux/ss | |
parent | 73e4977873bfbd8698d5b116ba32d48f2a889276 (diff) |
selinux: remove extraneous initialization of slots_used and max_chain_len
Variables slots_used and max_chain_len are being initialized to zero
twice. Remove the second set of initializations in the for loop.
Cleans up the clang warnings:
Value stored to 'slots_used' is never read
Value stored to 'max_chain_len' is never read
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security/selinux/ss')
-rw-r--r-- | security/selinux/ss/hashtab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/selinux/ss/hashtab.c b/security/selinux/ss/hashtab.c index bef7577d1270..e0443f4afea5 100644 --- a/security/selinux/ss/hashtab.c +++ b/security/selinux/ss/hashtab.c | |||
@@ -150,7 +150,7 @@ void hashtab_stat(struct hashtab *h, struct hashtab_info *info) | |||
150 | 150 | ||
151 | slots_used = 0; | 151 | slots_used = 0; |
152 | max_chain_len = 0; | 152 | max_chain_len = 0; |
153 | for (slots_used = max_chain_len = i = 0; i < h->size; i++) { | 153 | for (i = 0; i < h->size; i++) { |
154 | cur = h->htable[i]; | 154 | cur = h->htable[i]; |
155 | if (cur) { | 155 | if (cur) { |
156 | slots_used++; | 156 | slots_used++; |