0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 8.0.1080: memory leak for eof_chars terminal option and buffer name

Problem:    Memory leak for eof_chars terminal option and buffer name.
Solution:   Free job options. Free the buffer name
This commit is contained in:
Bram Moolenaar 2017-09-09 16:34:32 +02:00
parent 09d6c3818d
commit 74121231be
2 changed files with 5 additions and 0 deletions

View File

@ -38,6 +38,7 @@
* in tl_scrollback are no longer used.
*
* TODO:
* - check for memory leaks
* - patch to use GUI or cterm colors for vterm. Yasuhiro, #2067
* - Redirecting output does not work on MS-Windows.
* - implement term_setsize()
@ -393,6 +394,7 @@ term_start(typval_T *argvar, jobopt_T *opt, int forceit)
vim_snprintf((char *)p, len, "!%s (%d)", cmd, i);
if (buflist_findname(p) == NULL)
{
vim_free(curbuf->b_ffname);
curbuf->b_ffname = p;
break;
}
@ -552,6 +554,7 @@ ex_terminal(exarg_T *eap)
argvar[1].v_type = VAR_UNKNOWN;
term_start(argvar, &opt, eap->forceit);
vim_free(tofree);
vim_free(opt.jo_eof_chars);
}
/*

View File

@ -769,6 +769,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1080,
/**/
1079,
/**/