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/beval.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/beval.c')
-rw-r--r-- | src/beval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/beval.c b/src/beval.c index b7d9226e7..dd7bc3cdc 100644 --- a/src/beval.c +++ b/src/beval.c @@ -285,7 +285,7 @@ general_beval_cb(BalloonEval *beval, int state UNUSED) ++textwinlock; vim_free(result); - result = eval_to_string(bexpr, NULL, TRUE); + result = eval_to_string(bexpr, TRUE); // Remove one trailing newline, it is added when the result was a // list and it's hardly ever useful. If the user really wants a |