refactor(PVS/V1048): ignore "assigned the same value" warning

This commit is contained in:
Dundar Göc 2021-12-31 14:50:16 +01:00
parent 6c4b9c914b
commit adf213e05e

View File

@ -1032,9 +1032,9 @@ void ml_recover(bool checkext)
line_count = 0;
idx = 0; // start with first index in block 1
error = 0;
buf->b_ml.ml_stack_top = 0;
buf->b_ml.ml_stack_top = 0; // -V1048
buf->b_ml.ml_stack = NULL;
buf->b_ml.ml_stack_size = 0; // no stack yet
buf->b_ml.ml_stack_size = 0; // -V1048
if (curbuf->b_ffname == NULL) {
cannot_open = true;