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:
@@ -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),
|
||||
|
Reference in New Issue
Block a user