diff src/terminal.c @ 20508:357dea6b9fde v8.2.0808

patch 8.2.0808: not enough testing for the terminal window Commit: https://github.com/vim/vim/commit/98f1671cc0ab0ad6139cb9c6ce5262e7f646bc0a Author: Bram Moolenaar <Bram@vim.org> Date: Fri May 22 13:34:01 2020 +0200 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 https://github.com/vim/vim/issues/6069) Fix memory leak.
author Bram Moolenaar <Bram@vim.org>
date Fri, 22 May 2020 13:45:03 +0200
parents 03826c672315
children eedaa9a30ab4
line wrap: on
line diff
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -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);