# HG changeset patch # User Bram Moolenaar # Date 1607082304 -3600 # Node ID 2120e4b40e12cef6ee900af524accf1b8fa9fb5e # Parent 8352e4d605ed24cdcb867f0bad6292822a2ca546 patch 8.2.2087: Vim9: memory leak when statement is truncated Commit: https://github.com/vim/vim/commit/21e51221f2c4f301912a5d59c748351b02c3df9e Author: Bram Moolenaar Date: Fri Dec 4 12:43:29 2020 +0100 patch 8.2.2087: Vim9: memory leak when statement is truncated Problem: Vim9: memory leak when statement is truncated. Solution: Increment the number of local variables. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2087, +/**/ 2086, /**/ 2085, diff --git a/src/vim9compile.c b/src/vim9compile.c --- a/src/vim9compile.c +++ b/src/vim9compile.c @@ -5669,7 +5669,11 @@ compile_assignment(char_u *arg, exarg_T wp = op + oplen; p = skipwhite(wp); if (may_get_next_line_error(wp, &p, cctx) == FAIL) + { + if (new_local) + ++cctx->ctx_locals.ga_len; goto theend; + } r = compile_expr0_ext(&p, cctx, &is_const); if (new_local) ++cctx->ctx_locals.ga_len;