diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-02-22 15:47:41 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-03-01 04:01:32 -0500 |
commit | fa6518b1da17b19a78a2c3491f2f793665e6b7c3 (patch) | |
tree | 5aa0b9bb2fd32da6ec97b3e283571385c826cdcb | |
parent | 55e3f211105c3ab2fb16ac677847d695b31b1ae2 (diff) | |
download | rneovim-fa6518b1da17b19a78a2c3491f2f793665e6b7c3.tar.gz rneovim-fa6518b1da17b19a78a2c3491f2f793665e6b7c3.tar.bz2 rneovim-fa6518b1da17b19a78a2c3491f2f793665e6b7c3.zip |
vim-patch:8.2.0135: bracketed paste can still cause invalid memory access
Problem: Bracketed paste can still cause invalid memory access. (Dominique
Pelle)
Solution: Check for NULL pointer.
https://github.com/vim/vim/commit/fe4bbac1166f2e4e3fa18cb966ec7305198c8176
-rw-r--r-- | src/nvim/testdir/test_search.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_search.vim b/src/nvim/testdir/test_search.vim index acce8dc42f..8036dea29f 100644 --- a/src/nvim/testdir/test_search.vim +++ b/src/nvim/testdir/test_search.vim @@ -700,6 +700,7 @@ func Test_search_display_pattern() endfunc func Test_search_special() - " this was causing illegal memory access + " this was causing illegal memory access and an endless loop + set t_PE= exe "norm /\x80PS" endfunc |