diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-14 15:15:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-14 15:15:43 +0800 |
commit | c96020b2bf671995a3c125d4db219fa1e9635a86 (patch) | |
tree | 42e1e7a00c4ac2a733636da3cb12d162048a0890 | |
parent | 5854103dad5a9ae513c089a514364eff55582fbb (diff) | |
download | rneovim-c96020b2bf671995a3c125d4db219fa1e9635a86.tar.gz rneovim-c96020b2bf671995a3c125d4db219fa1e9635a86.tar.bz2 rneovim-c96020b2bf671995a3c125d4db219fa1e9635a86.zip |
vim-patch:8.2.3675 (#19766)
vim-patch:8.2.3675: using freed memory when vim_strsave() fails
Problem: Using freed memory when vim_strsave() fails.
Solution: Clear "last_sourcing_name". Check for msg_source() called
recursively. (closes vim/vim#8217)
https://github.com/vim/vim/commit/ba8c92687d53c91bbc20c867a49e0988819ea2d5
Although xstrdup() cannot fail in Nvim, it may still be possible that an
error appears (e.g. in regexp engine) when printing the message.
-rw-r--r-- | src/nvim/message.c | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index cdbd7369b3..265585266a 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -598,6 +598,14 @@ static char *get_emsg_lnum(void) /// is only displayed if it changed. void msg_source(int attr) { + static bool recursive = false; + + // Bail out if something called here causes an error. + if (recursive) { + return; + } + recursive = true; + no_wait_return++; char *p = get_emsg_source(); if (p != NULL) { @@ -613,14 +621,14 @@ void msg_source(int attr) // remember the last sourcing name printed, also when it's empty if (SOURCING_NAME == NULL || other_sourcing_name()) { - xfree(last_sourcing_name); - if (SOURCING_NAME == NULL) { - last_sourcing_name = NULL; - } else { + XFREE_CLEAR(last_sourcing_name); + if (SOURCING_NAME != NULL) { last_sourcing_name = xstrdup(SOURCING_NAME); } } - --no_wait_return; + no_wait_return--; + + recursive = false; } /// @return TRUE if not giving error messages right now: |