summaryrefslogtreecommitdiffstats
path: root/src/scriptfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/scriptfile.c')
-rw-r--r--src/scriptfile.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/scriptfile.c b/src/scriptfile.c
index 5b1e43b78f..dec512a72b 100644
--- a/src/scriptfile.c
+++ b/src/scriptfile.c
@@ -2190,7 +2190,7 @@ get_autoload_prefix(scriptitem_T *si)
/*
* If in a Vim9 autoload script return "name" with the autoload prefix for the
- * script. If successful "name" is freed, the returned name is allocated.
+ * script. If successful the returned name is allocated.
* Otherwise it returns "name" unmodified.
*/
char_u *
@@ -2221,7 +2221,6 @@ may_prefix_autoload(char_u *name)
{
vim_snprintf((char *)res, len, "%s%s",
si->sn_autoload_prefix, basename);
- vim_free(name);
return res;
}
}