From: Bram Moolenaar Date: Sun, 6 Jun 2021 15:34:13 +0000 (+0200) Subject: patch 8.2.2953: Vim9: leaking memory when using heredoc script X-Git-Tag: v8.2.2953 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=518df27ebe23033a25304d3826187c27bfa53c01;p=vim patch 8.2.2953: Vim9: leaking memory when using heredoc script Problem: Vim9: leaking memory when using heredoc script. Solution: Free the first line. --- diff --git a/src/version.c b/src/version.c index 59cd0ce94..1e9a787e9 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2953, /**/ 2952, /**/ diff --git a/src/vim9execute.c b/src/vim9execute.c index 1f2f7357e..5a8a112a6 100644 --- a/src/vim9execute.c +++ b/src/vim9execute.c @@ -1460,17 +1460,23 @@ exec_instructions(ectx_T *ectx) case ISN_EXEC_SPLIT: { source_cookie_T cookie; + char_u *line; SOURCING_LNUM = iptr->isn_lnum; CLEAR_FIELD(cookie); cookie.sourcing_lnum = iptr->isn_lnum - 1; cookie.nextline = iptr->isn_arg.string; - if (do_cmdline(get_split_sourceline(0, &cookie, 0, 0), + line = get_split_sourceline(0, &cookie, 0, 0); + if (do_cmdline(line, get_split_sourceline, &cookie, DOCMD_VERBOSE|DOCMD_NOWAIT|DOCMD_KEYTYPED) == FAIL || did_emsg) + { + vim_free(line); goto on_error; + } + vim_free(line); } break;