mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:7.4.748
Problem: Buffer overflow.
Solution: Make the buffer larger. (Kazunobu Kuriyama)
6a7e2a668b
This commit is contained in:
parent
a984203bd6
commit
515b7e3eff
@ -15242,7 +15242,7 @@ static void f_setmatches(typval_T *argvars, typval_T *rettv)
|
|||||||
li = l->lv_first;
|
li = l->lv_first;
|
||||||
while (li != NULL) {
|
while (li != NULL) {
|
||||||
int i = 0;
|
int i = 0;
|
||||||
char_u buf[4];
|
char_u buf[5];
|
||||||
dictitem_T *di;
|
dictitem_T *di;
|
||||||
d = li->li_tv.vval.v_dict;
|
d = li->li_tv.vval.v_dict;
|
||||||
|
|
||||||
|
@ -386,7 +386,7 @@ static int included_patches[] = {
|
|||||||
// 751 NA
|
// 751 NA
|
||||||
// 750 NA
|
// 750 NA
|
||||||
// 749,
|
// 749,
|
||||||
// 748,
|
748,
|
||||||
747,
|
747,
|
||||||
746,
|
746,
|
||||||
745,
|
745,
|
||||||
|
Loading…
Reference in New Issue
Block a user