diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-09-22 14:08:49 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-09-22 14:08:49 +0200 |
commit | 4841a7ccaed57f723016656e9683b587ac91f621 (patch) | |
tree | 0793848663ec98b1a2b0a0a82231bcbacc2449ab /src/testdir/test_startup.vim | |
parent | 9cea87c5775948a35098f3602746c20ecf95dbcd (diff) | |
download | vim-git-4841a7ccaed57f723016656e9683b587ac91f621.tar.gz |
patch 8.1.0426: accessing invalid memory in SmcOpenConnection()v8.1.0426
Problem: Accessing invalid memory in SmcOpenConnection().
Solution: Reduce size of errorstring by one. (Dominique Pelle, closes #3469)
Diffstat (limited to 'src/testdir/test_startup.vim')
-rw-r--r-- | src/testdir/test_startup.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim index 4a296ec01..6f06ab877 100644 --- a/src/testdir/test_startup.vim +++ b/src/testdir/test_startup.vim @@ -272,7 +272,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) |