Mercurial > vim
view src/testdir/test_startup_utf8.vim @ 33802:b857615e5d42 v9.0.2117
patch 9.0.2117: [security] use-after-free in qf_free_items
Commit: https://github.com/vim/vim/commit/567cae2630a51efddc07eacff3b38a295e1f5671
Author: Christian Brabandt <cb@256bit.org>
Date: Sun Nov 19 16:19:27 2023 +0100
patch 9.0.2117: [security] use-after-free in qf_free_items
Problem: [security] use-after-free in qf_free_items
Solution: only access qfpnext, if it hasn't been freed
Coverity discovered a possible use-after-free in qf_free_items. When
freeing the qfline items, we may access freed memory, when qfp ==
qfpnext.
So only access qfpnext, when it hasn't been freed.
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 21 Nov 2023 20:15:05 +0100 |
parents | ae10b91ac6b3 |
children |
line wrap: on
line source
" Tests for startup using utf-8. source check.vim source shared.vim source screendump.vim func Test_read_stdin_utf8() let linesin = ['テスト', '€ÀÈÌÒÙ'] call writefile(linesin, 'Xtestin', 'D') let before = [ \ 'set enc=utf-8', \ 'set fencs=cp932,utf-8', \ ] let after = [ \ 'write ++enc=utf-8 Xtestout', \ 'quit!', \ ] if has('win32') let pipecmd = 'type Xtestin | ' else let pipecmd = 'cat Xtestin | ' endif if RunVimPiped(before, after, '-', pipecmd) let lines = readfile('Xtestout') call assert_equal(linesin, lines) else call assert_equal('', 'RunVimPiped failed.') endif call delete('Xtestout') endfunc func Test_read_fifo_utf8() CheckUnix " Using bash/zsh's process substitution. if executable('bash') set shell=bash elseif executable('zsh') set shell=zsh else throw 'Skipped: bash or zsh is required' endif let linesin = ['テスト', '€ÀÈÌÒÙ'] call writefile(linesin, 'Xtestin', 'D') let before = [ \ 'set enc=utf-8', \ 'set fencs=cp932,utf-8', \ ] let after = [ \ 'write ++enc=utf-8 Xtestout', \ 'quit!', \ ] if RunVim(before, after, '<(cat Xtestin)') let lines = readfile('Xtestout') call assert_equal(linesin, lines) else call assert_equal('', 'RunVim failed.') endif call delete('Xtestout') endfunc func Test_detect_ambiwidth() CheckRunVimInTerminal " Use the title termcap entries to output the escape sequence. call writefile([ \ 'set enc=utf-8', \ 'set ambiwidth=double', \ 'call test_option_not_set("ambiwidth")', \ 'redraw', \ ], 'Xscript', 'D') let buf = RunVimInTerminal('-S Xscript', #{keep_t_u7: 1}) call TermWait(buf) call term_sendkeys(buf, "S\<C-R>=&ambiwidth\<CR>\<Esc>") call WaitForAssert({-> assert_match('single', term_getline(buf, 1))}) call StopVimInTerminal(buf) endfunc " vim: shiftwidth=2 sts=2 expandtab