summaryrefslogtreecommitdiffstats
path: root/src/findfile.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-06-24 20:34:03 +0200
committerBram Moolenaar <Bram@vim.org>2020-06-24 20:34:03 +0200
commitb171fb179053fa631fec74911b5fb9374cb6a8a1 (patch)
treec45ae9287bf07033cc4f3bf43529b7548ba432c9 /src/findfile.c
parent9d40c63c7dc8c3eb3886c58dcd334bc7f37eceba (diff)
patch 8.2.1049: Vim9: leaking memory when using continuation linev8.2.1049
Problem: Vim9: leaking memory when using continuation line. Solution: Keep a pointer to the continuation line in evalarg_T. Centralize checking for a next command.
Diffstat (limited to 'src/findfile.c')
-rw-r--r--src/findfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/findfile.c b/src/findfile.c
index b153ed010c..190fc69dc6 100644
--- a/src/findfile.c
+++ b/src/findfile.c
@@ -2079,7 +2079,7 @@ eval_includeexpr(char_u *ptr, int len)
char_u *res;
set_vim_var_string(VV_FNAME, ptr, len);
- res = eval_to_string_safe(curbuf->b_p_inex, NULL,
+ res = eval_to_string_safe(curbuf->b_p_inex,
was_set_insecurely((char_u *)"includeexpr", OPT_LOCAL));
set_vim_var_string(VV_FNAME, NULL, 0);
return res;