changeset 20320:e501e32a892f v8.2.0715

patch 8.2.0715: Vim9: leaking memory Commit: https://github.com/vim/vim/commit/cca34aa4bef5327eb4025850045c4c980ef4354b Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 7 22:23:58 2020 +0200 patch 8.2.0715: Vim9: leaking memory Problem: Vim9: leaking memory. Solution: Free strings after concatenating them.
author Bram Moolenaar <Bram@vim.org>
date Thu, 07 May 2020 22:30:04 +0200
parents b08c6631d3f2
children 7ea995290692
files src/version.c src/vim9compile.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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,
--- 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
 	{