1
0
forked from aniani/vim

patch 8.2.0633: crash when using null partial in filter()

Problem:    Crash when using null partial in filter().
Solution:   Fix crash.  Add more tests. (Yegappan Lakshmanan, closes #5976)
This commit is contained in:
Bram Moolenaar
2020-04-24 22:47:31 +02:00
parent 92c461ef1b
commit 9d8d0b5c64
14 changed files with 114 additions and 4 deletions

View File

@@ -132,7 +132,7 @@ func Test_win_execute_other_tab()
unlet xyz
endfunc
func Test_execute_null()
func Test_execute_func_with_null()
call assert_equal("", execute(test_null_string()))
call assert_equal("", execute(test_null_list()))
call assert_fails('call execute(test_null_dict())', 'E731:')
@@ -143,3 +143,5 @@ func Test_execute_null()
call assert_fails('call execute(test_null_channel())', 'E908:')
endif
endfunc
" vim: shiftwidth=2 sts=2 expandtab