summaryrefslogtreecommitdiff
path: root/src/register.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/register.c
parent9d40c63c7dc8c3eb3886c58dcd334bc7f37eceba (diff)
downloadvim-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/register.c')
-rw-r--r--src/register.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/register.c b/src/register.c
index 49f7a7c86..66dd0cca6 100644
--- a/src/register.c
+++ b/src/register.c
@@ -136,7 +136,7 @@ get_expr_line(void)
return expr_copy;
++nested;
- rv = eval_to_string(expr_copy, NULL, TRUE);
+ rv = eval_to_string(expr_copy, TRUE);
--nested;
vim_free(expr_copy);
return rv;