diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-10-14 16:00:49 +0100 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2017-10-16 18:37:23 -0400 |
commit | 73e4977873bfbd8698d5b116ba32d48f2a889276 (patch) | |
tree | 10d8c881bc5d58ddd1aa0971734f57154152d478 | |
parent | add24372141855b057bf53982824c5fe50898957 (diff) | |
download | op-kernel-dev-73e4977873bfbd8698d5b116ba32d48f2a889276.zip op-kernel-dev-73e4977873bfbd8698d5b116ba32d48f2a889276.tar.gz |
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>
-rw-r--r-- | security/selinux/ss/conditional.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/security/selinux/ss/conditional.c b/security/selinux/ss/conditional.c index 771c96a..c91543a 100644 --- a/security/selinux/ss/conditional.c +++ b/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; |