vim-patch:8.2.3779: using freed memory when defining a user command recursively (#17688)

Problem:    Using freed memory when defining a user command from a user
            command.
Solution:   Do not use the command pointer after executing the command.
            (closes vim/vim#9318)
205f29c3e9
This commit is contained in:
Sean Dewar
2022-03-12 08:25:28 +00:00
committed by GitHub
parent 08d9d74fd9
commit ab456bc304
2 changed files with 28 additions and 2 deletions

View File

@@ -572,4 +572,24 @@ func Test_delcommand_buffer()
call assert_equal(0, exists(':Global'))
endfunc
func DefCmd(name)
if len(a:name) > 30
return
endif
exe 'command ' .. a:name .. ' call DefCmd("' .. a:name .. 'x")'
echo a:name
exe a:name
endfunc
func Test_recursive_define()
call DefCmd('Command')
let name = 'Command'
while len(name) < 30
exe 'delcommand ' .. name
let name ..= 'x'
endwhile
endfunc
" vim: shiftwidth=2 sts=2 expandtab