# HG changeset patch # User Bram Moolenaar # Date 1607188504 -3600 # Node ID bdafc132a4a13a3fdf334709cbeda63681cc021d # Parent 409258cef9ec875d6a17d2c60bc4993716083888 patch 8.2.2095: Vim9: crash when failed dict member is followed by concat Commit: https://github.com/vim/vim/commit/4029cabbe7c68a304ab8becb495bd6d91c6e97b1 Author: Bram Moolenaar Date: Sat Dec 5 18:13:27 2020 +0100 patch 8.2.2095: Vim9: crash when failed dict member is followed by concat Problem: Vim9: crash when failed dict member is followed by concatenation. Solution: Remove the dict from the stack. (closes https://github.com/vim/vim/issues/7416) diff --git a/src/testdir/test_vim9_func.vim b/src/testdir/test_vim9_func.vim --- a/src/testdir/test_vim9_func.vim +++ b/src/testdir/test_vim9_func.vim @@ -1794,6 +1794,25 @@ def Test_abort_even_with_silent() enddef sil! Func() assert_equal('none', g:result) + unlet g:result + END + CheckScriptSuccess(lines) +enddef + +def Test_dict_member_with_silent() + var lines =<< trim END + vim9script + g:result = 'none' + var d: dict + def Func() + try + g:result = map([], {_, v -> {}[v]})->join() .. d[''] + catch + endtry + enddef + silent! Func() + assert_equal('0', g:result) + unlet g:result END CheckScriptSuccess(lines) enddef diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2095, +/**/ 2094, /**/ 2093, diff --git a/src/vim9execute.c b/src/vim9execute.c --- a/src/vim9execute.c +++ b/src/vim9execute.c @@ -2669,6 +2669,15 @@ call_def_function( { SOURCING_LNUM = iptr->isn_lnum; semsg(_(e_dictkey), key); + + // If :silent! is used we will continue, make sure the + // stack contents makes sense. + clear_tv(tv); + --ectx.ec_stack.ga_len; + tv = STACK_TV_BOT(-1); + clear_tv(tv); + tv->v_type = VAR_NUMBER; + tv->vval.v_number = 0; goto on_fatal_error; } clear_tv(tv);