mirror of
https://github.com/neovim/neovim.git
synced 2025-10-03 08:28:34 +00:00
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:

committed by
Thiago de Arruda

parent
ef6933bd60
commit
6eece5895e
@@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user