1
0
forked from aniani/vim

patch 9.0.2174: Vim9: segfault when assigning to type

Problem:  Vim9: segfault when assigning to type
Solution: do not clear typeval, add missing patch number

closes: #13714
closes: #13715

Signed-off-by: Ernie Rael <errael@raelity.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Ernie Rael
2023-12-18 08:34:41 +01:00
committed by Christian Brabandt
parent ec497574fc
commit b501108986
3 changed files with 12 additions and 1 deletions

View File

@@ -3978,7 +3978,6 @@ set_var_const(
{
semsg(_(e_cannot_modify_typealias),
di->di_tv.vval.v_typealias->ta_name);
clear_tv(&di->di_tv);
goto failed;
}