a85176781b
Rebase on upstream commit 32611aea6543 See $ cd SELinuxProject/selinux $ git log --pretty=oneline checkpolicy-3.2..32611aea6543 -- checkpolicy Resolves: rhbz#1988267
44 lines
1.2 KiB
Diff
44 lines
1.2 KiB
Diff
From 7723180fa09b0c483c07a76a4678f2c2cd51bff6 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= <cgzones@googlemail.com>
|
|
Date: Tue, 6 Jul 2021 19:54:27 +0200
|
|
Subject: [PATCH] checkpolicy: remove dead assignments
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
The variable `cladatum` is otherwise always assigned before used, so
|
|
these two assignments without a follow up usages are not needed.
|
|
|
|
Found by clang-analyzer.
|
|
|
|
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
|
|
---
|
|
checkpolicy/checkpolicy.c | 4 ----
|
|
1 file changed, 4 deletions(-)
|
|
|
|
diff --git a/checkpolicy/checkpolicy.c b/checkpolicy/checkpolicy.c
|
|
index b52595a87b29..58edcc34e8cc 100644
|
|
--- a/checkpolicy/checkpolicy.c
|
|
+++ b/checkpolicy/checkpolicy.c
|
|
@@ -1179,8 +1179,6 @@ int main(int argc, char **argv)
|
|
printf("\nNo such class.\n");
|
|
break;
|
|
}
|
|
- cladatum =
|
|
- policydb.class_val_to_struct[tclass - 1];
|
|
} else {
|
|
ans[strlen(ans) - 1] = 0;
|
|
cladatum =
|
|
@@ -1232,8 +1230,6 @@ int main(int argc, char **argv)
|
|
printf("\nNo such class.\n");
|
|
break;
|
|
}
|
|
- cladatum =
|
|
- policydb.class_val_to_struct[tclass - 1];
|
|
} else {
|
|
ans[strlen(ans) - 1] = 0;
|
|
cladatum =
|
|
--
|
|
2.32.0
|
|
|