diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-07 16:09:46 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-08 10:25:12 -0400 |
commit | 0206f279baf3250e7b1ae35eb29b581da7cc8b9b (patch) | |
tree | aca9bebfb5562a8067727748dc3d165e89274fd6 | |
parent | b868f87310c4fc108ad13be5b0ba260599d3b6d9 (diff) | |
download | rneovim-0206f279baf3250e7b1ae35eb29b581da7cc8b9b.tar.gz rneovim-0206f279baf3250e7b1ae35eb29b581da7cc8b9b.tar.bz2 rneovim-0206f279baf3250e7b1ae35eb29b581da7cc8b9b.zip |
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)
https://github.com/vim/vim/commit/4841a7ccaed57f723016656e9683b587ac91f621
-rw-r--r-- | src/nvim/testdir/test_startup.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_startup.vim b/src/nvim/testdir/test_startup.vim index b1a05d9c1b..873f2e8731 100644 --- a/src/nvim/testdir/test_startup.vim +++ b/src/nvim/testdir/test_startup.vim @@ -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) |