diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-12-08 18:58:06 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-08 18:58:06 +0800 |
commit | 4f64aef29f24b5ac305b609d0abf78d93e2c5e0d (patch) | |
tree | 6bb62039af4d839abe6c13e2a0f5cc75dbae3309 /src/nvim/testdir/test_quickfix.vim | |
parent | a27ed57ad040a7dfb67deba026df684fc375d509 (diff) | |
download | rneovim-4f64aef29f24b5ac305b609d0abf78d93e2c5e0d.tar.gz rneovim-4f64aef29f24b5ac305b609d0abf78d93e2c5e0d.tar.bz2 rneovim-4f64aef29f24b5ac305b609d0abf78d93e2c5e0d.zip |
vim-patch:8.2.3564: invalid memory access when scrolling without valid screen (#21335)
vim-patch:8.2.3564: invalid memory access when scrolling without valid screen
Problem: Invalid memory access when scrolling without a valid screen.
Solution: Do not set VALID_BOTLINE in w_valid.
https://github.com/vim/vim/commit/777e7c21b7627be80961848ac560cb0a9978ff43
Remove -Z flag when using RunVim().
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src/nvim/testdir/test_quickfix.vim')
-rw-r--r-- | src/nvim/testdir/test_quickfix.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_quickfix.vim b/src/nvim/testdir/test_quickfix.vim index 45b6e6b38c..e13ff77705 100644 --- a/src/nvim/testdir/test_quickfix.vim +++ b/src/nvim/testdir/test_quickfix.vim @@ -6088,7 +6088,7 @@ func Test_lopen_bwipe_all() qall! END call writefile(lines, 'Xscript') - if RunVim([], [], '--clean -n -S Xscript') + if RunVim([], [], '-u NONE -n -X -Z -e -m -s -S Xscript') call assert_equal(['done'], readfile('Xresult')) endif |