# HG changeset patch # User Bram Moolenaar # Date 1627504204 -7200 # Node ID e3f1086429d88c3fd25b405f99f32c928bb347bb # Parent 58603ea67d8ecb342d5521d01bf97aee00868964 patch 8.2.3241: Vim9: memory leak when function reports an error Commit: https://github.com/vim/vim/commit/6e850a6900793e215c08b39d6490173488cb05ce Author: Bram Moolenaar Date: Wed Jul 28 22:21:23 2021 +0200 patch 8.2.3241: Vim9: memory leak when function reports an error Problem: Vim9: memory leak when function reports an error. Solution: Clear the return value. diff --git a/src/userfunc.c b/src/userfunc.c --- a/src/userfunc.c +++ b/src/userfunc.c @@ -1691,9 +1691,12 @@ get_func_tv( ret = call_func(name, len, rettv, argcount, argvars, funcexe); if (in_vim9script() && did_emsg > did_emsg_before) + { // An error in a builtin function does not return FAIL, but we do // want to abort further processing if an error was given. ret = FAIL; + clear_tv(rettv); + } funcargs.ga_len -= i; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3241, +/**/ 3240, /**/ 3239,