diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-06-24 20:34:03 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-06-24 20:34:03 +0200 |
commit | b171fb179053fa631fec74911b5fb9374cb6a8a1 (patch) | |
tree | c45ae9287bf07033cc4f3bf43529b7548ba432c9 /src/fold.c | |
parent | 9d40c63c7dc8c3eb3886c58dcd334bc7f37eceba (diff) | |
download | vim-git-b171fb179053fa631fec74911b5fb9374cb6a8a1.tar.gz |
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/fold.c')
-rw-r--r-- | src/fold.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fold.c b/src/fold.c index d91203c75..043037fa6 100644 --- a/src/fold.c +++ b/src/fold.c @@ -1928,7 +1928,7 @@ get_foldtext( curbuf = wp->w_buffer; ++emsg_silent; // handle exceptions, but don't display errors - text = eval_to_string_safe(wp->w_p_fdt, NULL, + text = eval_to_string_safe(wp->w_p_fdt, was_set_insecurely((char_u *)"foldtext", OPT_LOCAL)); --emsg_silent; |