0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.2.0808: not enough testing for the terminal window

Problem:    Not enough testing for the terminal window.
Solution:   Add more tests. (Yegappan Lakshmanan, closes #6069)  Fix memory
            leak.
This commit is contained in:
Bram Moolenaar
2020-05-22 13:34:01 +02:00
parent 4c9243f9fb
commit 98f1671cc0
4 changed files with 41 additions and 19 deletions

View File

@@ -3047,7 +3047,7 @@ handle_settermprop(
#endif
else
{
term->tl_title = vim_strsave(strval);
term->tl_title = strval;
strval = NULL;
}
VIM_CLEAR(term->tl_status_text);