1
0
forked from aniani/vim

patch 8.1.1812: reading a truncted undo file hangs Vim

Problem:    Reading a truncted undo file hangs Vim.
Solution:   Check for reading EOF. (closes #4769)
This commit is contained in:
Bram Moolenaar
2019-08-04 18:55:35 +02:00
parent c363fe1599
commit fb06d767a8
3 changed files with 26 additions and 0 deletions

View File

@@ -335,6 +335,24 @@ func Test_undofile_earlier()
call delete('Xundofile')
endfunc
" Check that reading a truncted undo file doesn't hang.
func Test_undofile_truncated()
new
call setline(1, 'hello')
set ul=100
wundo Xundofile
let contents = readfile('Xundofile', 'B')
" try several sizes
for size in range(20, 500, 33)
call writefile(contents[0:size], 'Xundofile')
call assert_fails('rundo Xundofile', 'E825:')
endfor
bwipe!
" call delete('Xundofile')
endfunc
" Test for undo working properly when executing commands from a register.
" Also test this in an empty buffer.
func Test_cmd_in_reg_undo()