checkpolicy: remove dead assignments
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>
This commit is contained in:
parent
79e7724930
commit
7723180fa0
|
@ -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 =
|
||||
|
|
Loading…
Reference in New Issue