vim-patch:8.1.0426: accessing invalid memory in SmcOpenConnection()

Problem:    Accessing invalid memory in SmcOpenConnection().
Solution:   Reduce size of errorstring by one. (Dominique Pelle, closes vim/vim#3469)
4841a7ccae
This commit is contained in:
Jan Edmund Lazo
2019-06-07 16:09:46 -04:00
parent b868f87310
commit 0206f279ba

View File

@@ -274,7 +274,7 @@ endfunc
" Test the -V[N]{filename} argument to set the 'verbose' option to N
" and set 'verbosefile' to filename.
func Test_V_file_arg()
if RunVim([], [], ' --clean -X -V2Xverbosefile -c "set verbose? verbosefile?" -cq')
if RunVim([], [], ' --clean -V2Xverbosefile -c "set verbose? verbosefile?" -cq')
let out = join(readfile('Xverbosefile'), "\n")
" call assert_match("sourcing \"$VIMRUNTIME[\\/]defaults\.vim\"\n", out)
call assert_match("\n verbose=2\n", out)