0
0
mirror of https://github.com/vim/vim.git synced 2025-10-08 06:04:08 -04:00

patch 7.4.748

Problem:    Buffer overflow.
Solution:   Make the buffer larger. (Kazunobu Kuriyama)
This commit is contained in:
Bram Moolenaar
2015-06-19 21:06:11 +02:00
parent e2db6c975b
commit 6a7e2a668b
2 changed files with 3 additions and 1 deletions

View File

@@ -17157,7 +17157,7 @@ f_setmatches(argvars, rettv)
while (li != NULL)
{
int i = 0;
char_u buf[4];
char_u buf[5];
dictitem_T *di;
d = li->li_tv.vval.v_dict;