changeset 27055:d4e7e3d82e78 v8.2.4056

patch 8.2.4056: Vim9: memory leak when exporting function in autoload script Commit: https://github.com/vim/vim/commit/6990b78f253eb7f3ebd296fd5c8353e3da1cc8f2 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 10 19:21:06 2022 +0000 patch 8.2.4056: Vim9: memory leak when exporting function in autoload script Problem: Vim9: memory leak when exporting function in autoload script. Solution: Fee the name if replacing it.
author Bram Moolenaar <Bram@vim.org>
date Mon, 10 Jan 2022 20:30:04 +0100
parents f8f463374eda
children 55c2e1ddda32
files src/scriptfile.c src/version.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/scriptfile.c
+++ b/src/scriptfile.c
@@ -2210,6 +2210,7 @@ may_prefix_autoload(char_u *name)
 	    {
 		vim_snprintf((char *)res, len, "%s%s",
 					     si->sn_autoload_prefix, basename);
+		vim_free(name);
 		return res;
 	    }
 	}
--- 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 */
 /**/
+    4056,
+/**/
     4055,
 /**/
     4054,