mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.2764: memory leak when default function argument is allocated
Problem: Memory leak when default function argument is allocated. Solution: Free the expression result.
This commit is contained in:
parent
a3589a0d6c
commit
b47bed2f7a
@ -1497,6 +1497,7 @@ endfunc
|
|||||||
|
|
||||||
func Test_balloon_show()
|
func Test_balloon_show()
|
||||||
CheckFeature balloon_eval
|
CheckFeature balloon_eval
|
||||||
|
|
||||||
" This won't do anything but must not crash either.
|
" This won't do anything but must not crash either.
|
||||||
call balloon_show('hi!')
|
call balloon_show('hi!')
|
||||||
if !has('gui_running')
|
if !has('gui_running')
|
||||||
@ -2650,4 +2651,12 @@ func Test_browsedir()
|
|||||||
call assert_fails('call browsedir("open", [])', 'E730:')
|
call assert_fails('call browsedir("open", [])', 'E730:')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
func HasDefault(msg = 'msg')
|
||||||
|
return a:msg
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
func Test_default_arg_value()
|
||||||
|
call assert_equal('msg', HasDefault())
|
||||||
|
endfunc
|
||||||
|
|
||||||
" vim: shiftwidth=2 sts=2 expandtab
|
" vim: shiftwidth=2 sts=2 expandtab
|
||||||
|
@ -2188,6 +2188,8 @@ call_user_func(
|
|||||||
int islambda = FALSE;
|
int islambda = FALSE;
|
||||||
char_u numbuf[NUMBUFLEN];
|
char_u numbuf[NUMBUFLEN];
|
||||||
char_u *name;
|
char_u *name;
|
||||||
|
typval_T *tv_to_free[MAX_FUNC_ARGS];
|
||||||
|
int tv_to_free_len = 0;
|
||||||
#ifdef FEAT_PROFILE
|
#ifdef FEAT_PROFILE
|
||||||
profinfo_T profile_info;
|
profinfo_T profile_info;
|
||||||
#endif
|
#endif
|
||||||
@ -2333,6 +2335,7 @@ call_user_func(
|
|||||||
if (isdefault)
|
if (isdefault)
|
||||||
{
|
{
|
||||||
char_u *default_expr = NULL;
|
char_u *default_expr = NULL;
|
||||||
|
|
||||||
def_rettv.v_type = VAR_NUMBER;
|
def_rettv.v_type = VAR_NUMBER;
|
||||||
def_rettv.vval.v_number = -1;
|
def_rettv.vval.v_number = -1;
|
||||||
|
|
||||||
@ -2374,6 +2377,10 @@ call_user_func(
|
|||||||
v->di_tv = isdefault ? def_rettv : argvars[i];
|
v->di_tv = isdefault ? def_rettv : argvars[i];
|
||||||
v->di_tv.v_lock = VAR_FIXED;
|
v->di_tv.v_lock = VAR_FIXED;
|
||||||
|
|
||||||
|
if (isdefault)
|
||||||
|
// Need to free this later, no matter where it's stored.
|
||||||
|
tv_to_free[tv_to_free_len++] = &v->di_tv;
|
||||||
|
|
||||||
if (addlocal)
|
if (addlocal)
|
||||||
{
|
{
|
||||||
// Named arguments should be accessed without the "a:" prefix in
|
// Named arguments should be accessed without the "a:" prefix in
|
||||||
@ -2563,6 +2570,8 @@ call_user_func(
|
|||||||
|
|
||||||
did_emsg |= save_did_emsg;
|
did_emsg |= save_did_emsg;
|
||||||
funcdepth_decrement();
|
funcdepth_decrement();
|
||||||
|
for (i = 0; i < tv_to_free_len; ++i)
|
||||||
|
clear_tv(tv_to_free[i]);
|
||||||
cleanup_function_call(fc);
|
cleanup_function_call(fc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -750,6 +750,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2764,
|
||||||
/**/
|
/**/
|
||||||
2763,
|
2763,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user