diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-10 20:34:04 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-10 20:34:04 +0100 |
commit | 7ba3b91e0385c848c773e2f2d803db01730e7786 (patch) | |
tree | ba8120ac6c9dbbbc973d5206de5d47df9b43044f /src/terminal.c | |
parent | 57ea2924e5dd14aac716a1ee349bdb61f6429f59 (diff) | |
download | vim-git-7ba3b91e0385c848c773e2f2d803db01730e7786.tar.gz |
patch 8.2.0237: crash when setting 'wincolor' on finished terminal windowv8.2.0237
Problem: Crash when setting 'wincolor' on finished terminal window.
(Bakudankun)
Solution: Check that the vterm is not NULL. (Yasuhiro Matsumoto, closes
#5607, closes #5610)
Diffstat (limited to 'src/terminal.c')
-rw-r--r-- | src/terminal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/terminal.c b/src/terminal.c index cbf8fe079..10bfae842 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -4276,6 +4276,8 @@ term_update_colors(void) { term_T *term = curwin->w_buffer->b_term; + if (term->tl_vterm == NULL) + return; init_default_colors(term, curwin); vterm_state_set_default_colors( vterm_obtain_state(term->tl_vterm), |