From b7020e263e693dcad7de55f4175171f468ee44eb Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Tue, 11 Feb 2025 09:12:04 +0800 Subject: vim-patch:9.1.1098: leaking memory with completing multi lines Problem: leaking memory with completing multi lines (after v9.1.1086) Solution: free allocated memory (glepnir) closes: vim/vim#16605 https://github.com/vim/vim/commit/e3647c8bf5b8143a24a37172e608a2e0c4661318 Co-authored-by: glepnir --- src/nvim/insexpand.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/nvim/insexpand.c b/src/nvim/insexpand.c index a5fc669b6e..5bf8c50143 100644 --- a/src/nvim/insexpand.c +++ b/src/nvim/insexpand.c @@ -3788,6 +3788,9 @@ void ins_compl_delete(bool new_leader) if ((int)curwin->w_cursor.col > col) { if (stop_arrow() == FAIL) { + if (remaining) { + XFREE_CLEAR(remaining); + } return; } backspace_until_column(col); -- cgit