Forráskód Böngészése

selinux: remove redundant assignment to len

The variable len is being set to zero and this value is never
being read since len is being set to a different value just
a few lines later.  Remove this redundant assignment. Cleans
up clang warning: Value stored to 'len' is never read

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Colin Ian King 7 éve
szülő
commit
73e4977873
1 módosított fájl, 0 hozzáadás és 1 törlés
  1. 0 1
      security/selinux/ss/conditional.c

+ 0 - 1
security/selinux/ss/conditional.c

@@ -361,7 +361,6 @@ static int cond_read_av_list(struct policydb *p, void *fp, struct cond_av_list *
 
 	*ret_list = NULL;
 
-	len = 0;
 	rc = next_entry(buf, fp, sizeof(u32));
 	if (rc)
 		return rc;