Fix a 'garbage value' warning found by Clang's static analyzer

- Initialize lists in paragraph_start()
 - Remove two dead stores
This commit is contained in:
Felipe Oliveira Carvalho
2014-02-27 16:13:11 -03:00
committed by Thiago de Arruda
parent ef6933bd60
commit 6eece5895e
3 changed files with 5 additions and 6 deletions

View File

@@ -2520,7 +2520,7 @@ static void reginsert_nr(int op, long val, char_u *opnd)
*place++ = op;
*place++ = NUL;
*place++ = NUL;
place = re_put_long(place, (long_u)val);
re_put_long(place, (long_u)val);
}
/*