0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 7.4.1918

Problem:    Not enough testing for parsing viminfo lines.
Solution:   Add test with viminfo lines in bad syntax.  Fix memory leak.
This commit is contained in:
Bram Moolenaar
2016-06-11 15:31:47 +02:00
parent 012270936c
commit 62f8b4e180
4 changed files with 29 additions and 2 deletions

View File

@@ -2589,13 +2589,18 @@ barline_parse(vir_T *virp, char_u *text, bval_T *values)
++p;
len = getdigits(&p);
buf = alloc((int)(len + 1));
if (buf == NULL)
return count;
p = buf;
for (todo = len; todo > 0; todo -= n)
{
if (viminfo_readline(virp) || virp->vir_line[0] != '|'
|| virp->vir_line[1] != '<')
{
/* file was truncated or garbled */
return 0;
vim_free(buf);
return count;
}
/* Get length of text, excluding |< and NL chars. */
n = STRLEN(virp->vir_line);
while (n > 0 && (virp->vir_line[n - 1] == NL
@@ -2623,7 +2628,7 @@ barline_parse(vir_T *virp, char_u *text, bval_T *values)
if (viminfo_readline(virp) || virp->vir_line[0] != '|'
|| virp->vir_line[1] != '<')
/* file was truncated or garbled */
return 0;
return count;
p = virp->vir_line + 2;
}
}

View File

@@ -6471,6 +6471,7 @@ merge_history(int type)
vim_free(history[type][i].hisstr);
vim_free(history[type]);
history[type] = new_hist;
vim_free(tot_hist);
}
/*

View File

@@ -201,3 +201,22 @@ func Test_viminfo_encoding()
call delete('Xviminfo')
endfunc
func Test_viminfo_bad_syntax()
let lines = []
call add(lines, '|<') " empty continuation line
call add(lines, '|234234234234234324,nothing')
call add(lines, '|1+"no comma"')
call add(lines, '|1,2,3,4,5,6,7') " too many items
call add(lines, '|1,"string version"')
call add(lines, '|1,>x') " bad continuation line
call add(lines, '|1,"x') " missing quote
call add(lines, '|1,"x\') " trailing backslash
call add(lines, '|1,,,,') "trailing comma
call add(lines, '|1,>234') " trailing continuation line
call writefile(lines, 'Xviminfo')
call assert_fails('rviminfo Xviminfo', 'E685:')
call delete('Xviminfo')
endfunc

View File

@@ -753,6 +753,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1918,
/**/
1917,
/**/