diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-03-04 14:19:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-04 14:19:53 +0800 |
commit | de14f2c928f913d4fb617d693024eec5cf2223ec (patch) | |
tree | 34e2b7c7324382eb0058e1dffa2d1baa1ab2ae0d /src/nvim/edit.c | |
parent | 446c353a507834a3cbe9007b06e7e0c2c46b5ac7 (diff) | |
parent | b7d59649acf43c76cc72b25c04bcae926a40b4fe (diff) | |
download | rneovim-de14f2c928f913d4fb617d693024eec5cf2223ec.tar.gz rneovim-de14f2c928f913d4fb617d693024eec5cf2223ec.tar.bz2 rneovim-de14f2c928f913d4fb617d693024eec5cf2223ec.zip |
Merge pull request #22506 from zeertzjq/vim-9.0.0013
vim-patch:9.0.{partial:0013,0016}: fix memory access errors
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index 7522cc202e..2849268da2 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -4653,9 +4653,9 @@ int ins_copychar(linenr_T lnum) } // try to advance to the cursor column + validate_virtcol(); line = ml_get(lnum); prev_ptr = line; - validate_virtcol(); chartabsize_T cts; init_chartabsize_arg(&cts, curwin, lnum, 0, line, line); |