# HG changeset patch # User Bram Moolenaar # Date 1584901804 -3600 # Node ID eb4887dd4b60e9e5424a029fff734c0d4bbe6737 # Parent 456d9eee3c81a68a97edc73afaaa728a1001d70a patch 8.2.0428: buffer name may leak Commit: https://github.com/vim/vim/commit/d5bc32df207eae408263ae6ab737771365d0bca1 Author: Bram Moolenaar Date: Sun Mar 22 19:25:50 2020 +0100 patch 8.2.0428: buffer name may leak Problem: Buffer name may leak. Solution: Free the buffer name before overwriting it. diff --git a/src/terminal.c b/src/terminal.c --- a/src/terminal.c +++ b/src/terminal.c @@ -465,7 +465,7 @@ term_start( buf_T *buf; // Create a new buffer without a window. Make it the current buffer for - // a moment to be able to do the initialisations. + // a moment to be able to do the initializations. buf = buflist_new((char_u *)"", NULL, (linenr_T)0, BLN_NEW | BLN_LISTED); if (buf == NULL || ml_open(buf) == FAIL) @@ -526,9 +526,15 @@ term_start( apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); if (opt->jo_term_name != NULL) + { + vim_free(curbuf->b_ffname); curbuf->b_ffname = vim_strsave(opt->jo_term_name); + } else if (argv != NULL) + { + vim_free(curbuf->b_ffname); curbuf->b_ffname = vim_strsave((char_u *)"!system"); + } else { int i; @@ -1983,7 +1989,7 @@ term_enter_job_mode() redraw_buf_and_status_later(curbuf, NOT_VALID); #ifdef FEAT_PROP_POPUP if (WIN_IS_POPUP(curwin)) - redraw_win_later(curwin, NOT_VALID); + redraw_later(NOT_VALID); #endif } @@ -4321,6 +4327,8 @@ term_update_colors(void) vterm_obtain_state(term->tl_vterm), &term->tl_default_color.fg, &term->tl_default_color.bg); + + redraw_later(NOT_VALID); } /* diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 428, +/**/ 427, /**/ 426,