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

e3647c8bf5

Co-authored-by: glepnir <glephunter@gmail.com>
This commit is contained in:
zeertzjq
2025-02-11 09:12:04 +08:00
parent 5d2b6f4fa0
commit b7020e263e

View File

@ -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);