neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 3f4030e1712db64ee398459f2e5fcf2803d253ab
parent d76017c613647326b4195580422196a7d0fd548d
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Thu, 22 Sep 2022 13:11:50 +0800

vim-patch:8.2.3428: using freed memory when replacing

Problem:    Using freed memory when replacing. (Dhiraj Mishra)
Solution:   Get the line pointer after calling ins_copychar().
https://github.com/vim/vim/commit/35a9a00afcb20897d462a766793ff45534810dc3

This patch is N/A as it only applies to non-UTF-8 encoding.

Diffstat:
Msrc/nvim/testdir/test_edit.vim | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/src/nvim/testdir/test_edit.vim b/src/nvim/testdir/test_edit.vim @@ -1951,4 +1951,16 @@ func Test_edit_revins() bw! endfunc +" Test for getting the character of the line below after "p" +func Test_edit_put_CTRL_E() + " set encoding=latin1 + new + let @" = '' + sil! norm orggRx + sil! norm pr + call assert_equal(['r', 'r'], getline(1, 2)) + bwipe! + set encoding=utf-8 +endfunc + " vim: shiftwidth=2 sts=2 expandtab