mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 23:38:17 +00:00
vim-patch:7.4.748
Problem: Buffer overflow.
Solution: Make the buffer larger. (Kazunobu Kuriyama)
6a7e2a668b
This commit is contained in:
@@ -15242,7 +15242,7 @@ static void f_setmatches(typval_T *argvars, typval_T *rettv)
|
||||
li = l->lv_first;
|
||||
while (li != NULL) {
|
||||
int i = 0;
|
||||
char_u buf[4];
|
||||
char_u buf[5];
|
||||
dictitem_T *di;
|
||||
d = li->li_tv.vval.v_dict;
|
||||
|
||||
|
Reference in New Issue
Block a user