fix: pvs warnings (#21145)

* fix(PVS/V009): start file with special comment

* fix(PVS/V501): identical sub-expressions for comparison

* fix(PVS/V560): part of conditional expression is always true/false

* fix(PVS/V593): review expression of type A = B < C

* fix(PVS/V614): potentially uninitialized variable used
This commit is contained in:
dundargoc
2022-11-22 01:07:45 +01:00
committed by GitHub
parent edd0de9821
commit 0cbc23d3cc
6 changed files with 8 additions and 5 deletions

View File

@@ -862,7 +862,7 @@ void ex_endif(exarg_T *eap)
/// Handle ":else" and ":elseif".
void ex_else(exarg_T *eap)
{
int result;
bool result = false;
cstack_T *const cstack = eap->cstack;
bool skip = CHECK_SKIP;