0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.0237: crash when setting 'wincolor' on finished terminal window

Problem:    Crash when setting 'wincolor' on finished terminal window.
            (Bakudankun)
Solution:   Check that the vterm is not NULL. (Yasuhiro Matsumoto, closes
            #5607, closes #5610)
This commit is contained in:
Bram Moolenaar
2020-02-10 20:34:04 +01:00
parent 57ea2924e5
commit 7ba3b91e03
3 changed files with 19 additions and 0 deletions

View File

@@ -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),