提交 5794ed76 编写于 作者: C Colin Ian King 提交者: Paul Moore

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: NColin Ian King <colin.king@canonical.com>
Signed-off-by: NPaul Moore <paul@paul-moore.com>
上级 73e49778
......@@ -150,7 +150,7 @@ void hashtab_stat(struct hashtab *h, struct hashtab_info *info)
slots_used = 0;
max_chain_len = 0;
for (slots_used = max_chain_len = i = 0; i < h->size; i++) {
for (i = 0; i < h->size; i++) {
cur = h->htable[i];
if (cur) {
slots_used++;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册