diff src/testdir/test_messages.vim @ 26642:7fe649a64777 v8.2.3850

patch 8.2.3850: illegal memory access when displaying a partial Commit: https://github.com/vim/vim/commit/2de5371a755abd287dab6ff544924715a76d4abe Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 19 11:06:35 2021 +0000 patch 8.2.3850: illegal memory access when displaying a partial Problem: Illegal memory access when displaying a partial. Solution: Terminate the string with a NUL. (closes https://github.com/vim/vim/issues/9371)
author Bram Moolenaar <Bram@vim.org>
date Sun, 19 Dec 2021 12:15:03 +0100
parents 72e9b861bc92
children a3f38923c037
line wrap: on
line diff
--- a/src/testdir/test_messages.vim
+++ b/src/testdir/test_messages.vim
@@ -337,4 +337,11 @@ func Test_quit_long_message()
   call delete('Xtest_quit_message')
 endfunc
 
+" this was missing a terminating NUL
+func Test_echo_string_partial()
+  function CountSpaces()
+  endfunction
+  echomsg function('CountSpaces', [#{aaaaaaaaaaa: v:false, bbbbbbbbbbbb: '', ccccccccccc: ['ab', 'cd']}])
+endfunc
+
 " vim: shiftwidth=2 sts=2 expandtab