]> git.ipfire.org Git - thirdparty/vim.git/commit
patch 9.0.1988: Vim9: potential use-after-free for class members v9.0.1988
authorYegappan Lakshmanan <yegappan@yahoo.com>
Thu, 5 Oct 2023 18:24:18 +0000 (20:24 +0200)
committerChristian Brabandt <cb@256bit.org>
Thu, 5 Oct 2023 18:24:18 +0000 (20:24 +0200)
commitd2f4800099733216e28d59e1a5710f624b0d9ec1
tree03f042481413f79bb33b4c46e9bf38169d22bd76
parentda5da654deb46a1432de26c7e02e7eba64c122f3
patch 9.0.1988: Vim9: potential use-after-free for class members

Problem:  Vim9: potential use-after-free for class members
Solution: Use the class-related grow array for storing the
          member type instead of using a temporary type
          list grow array

Use the type list grow array associated with the class than using a
temporary type list grow array to allocate the class member type.

For simple types, a predefined type is used. For complex types, the type
is dynamically allocated from a grow array. For class variables, the
type grow array in the class should be used. So that the lifetime of the
type is same as the lifetime of the class.

closes: #13279

Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Yegappan Lakshmanan <yegappan@yahoo.com>
src/testdir/test_vim9_class.vim
src/version.c
src/vim9class.c