summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-05-07 22:23:58 +0200
committerBram Moolenaar <Bram@vim.org>2020-05-07 22:23:58 +0200
commitcca34aa4bef5327eb4025850045c4c980ef4354b (patch)
tree39e9ce97dae4daec0ec8f60c857bbddfee31328c
parentf0eefce93bb06037a2d45e7ea8c0ad6f1f714151 (diff)
patch 8.2.0715: Vim9: leaking memoryv8.2.0715
Problem: Vim9: leaking memory. Solution: Free strings after concatenating them.
-rw-r--r--src/version.c2
-rw-r--r--src/vim9compile.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c
index fd59afd1b6..7434486490 100644
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 715,
+/**/
714,
/**/
713,
diff --git a/src/vim9compile.c b/src/vim9compile.c
index 4ebb88062c..3d3b3c30fc 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -4229,6 +4229,8 @@ compile_expr5(char_u **arg, cctx_T *cctx)
}
mch_memmove(tv1.vval.v_string, s1, len1);
STRCPY(tv1.vval.v_string + len1, s2);
+ vim_free(s1);
+ vim_free(s2);
}
else
{