neovim

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

commit 15061d322dcd075aec21dccc31c6205b13880b94
parent db133879b2a115cdf982b2899f154f1851d59a60
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Fri,  6 Feb 2026 18:29:24 +0800

vim-patch:9.1.2133: Another case of buffer overflow with 'helpfile' (#37746)

Problem:  Another case of buffer overflow with 'helpfile'.
Solution: Leave room for "tags" in the buffer (zeertzjq).

closes: vim/vim#19340

https://github.com/vim/vim/commit/21d591fb12b08b52d92253bf9ac4b866475d62d6
Diffstat:
Msrc/nvim/tag.c | 2+-
Mtest/old/testdir/test_help.vim | 5+++++
2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/src/nvim/tag.c b/src/nvim/tag.c @@ -2500,7 +2500,7 @@ int get_tagfname(tagname_T *tnp, int first, char *buf) return FAIL; } tnp->tn_hf_idx++; - xstrlcpy(buf, p_hf, MAXPATHL); + xstrlcpy(buf, p_hf, MAXPATHL - STRLEN_LITERAL("tags")); STRCPY(path_tail(buf), "tags"); #ifdef BACKSLASH_IN_FILENAME slash_adjust(buf); diff --git a/test/old/testdir/test_help.vim b/test/old/testdir/test_help.vim @@ -302,6 +302,11 @@ func Test_helpfile_overflow() let &helpfile = repeat('A', 5000) help helpclose + for i in range(4089, 4096) + let &helpfile = repeat('A', i) .. '/A' + help + helpclose + endfor let &helpfile = _helpfile endfunc