comparison src/testdir/test_quickfix.vim @ 13074:66c014c71dad v8.0.1412

patch 8.0.1412: using free memory using setloclist() commit https://github.com/vim/vim/commit/12237448499aaeb8c4f2be7a1deda60c0f160627 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 19 12:38:52 2017 +0100 patch 8.0.1412: using free memory using setloclist() Problem: Using free memory using setloclist(). (Dominique Pelle) Solution: Mark location list context as still in use when needed. (Yegappan Lakshmanan, closes #2462)
author Christian Brabandt <cb@256bit.org>
date Tue, 19 Dec 2017 12:45:06 +0100
parents 617112037564
children a1f8939a4644
comparison
equal deleted inserted replaced
13073:d790c28d0354 13074:66c014c71dad
3015 3015
3016 func Test_qf_tick() 3016 func Test_qf_tick()
3017 call Xqftick_tests('c') 3017 call Xqftick_tests('c')
3018 call Xqftick_tests('l') 3018 call Xqftick_tests('l')
3019 endfunc 3019 endfunc
3020
3021 " The following test used to crash Vim.
3022 " Open the location list window and close the regular window associated with
3023 " the location list. When the garbage collection runs now, it incorrectly
3024 " marks the location list context as not in use and frees the context.
3025 func Test_ll_window_ctx()
3026 call setloclist(0, [], 'f')
3027 call setloclist(0, [], 'a', {'context' : []})
3028 lopen | only
3029 call test_garbagecollect_now()
3030 echo getloclist(0, {'context' : 1}).context
3031 enew | only
3032 endfunc
3033