Skip to content

Commit

Permalink
fix(PVS/V614): potentially uninitialized variable used
Browse files Browse the repository at this point in the history
  • Loading branch information
dundargoc committed Nov 21, 2022
1 parent c110bda commit 616ea7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nvim/ex_eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 616ea7c

Please sign in to comment.