mirror of
https://github.com/vim/vim.git
synced 2025-11-15 23:14:06 -05:00
patch 9.0.2158: [security]: use-after-free in check_argument_type
Problem: [security]: use-after-free in check_argument_type
Solution: Reset function type pointer when freeing the function type
list
function pointer fp->uf_func_type may point to the same memory, that was
allocated for fp->uf_type_list. However, when cleaning up a function
definition (e.g. because it was invalid), fp->uf_type_list will be
freed, but fp->uf_func_type may still point to the same (now) invalid
memory address.
So when freeing the fp->uf_type_list, check if fp->func_type points to
any of those types and if it does, reset the fp->uf_func_type pointer to
the t_func_any (default) type pointer
closes: #13652
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
type_T *get_type_ptr(garray_T *type_gap);
|
||||
type_T *copy_type(type_T *type, garray_T *type_gap);
|
||||
void clear_type_list(garray_T *gap);
|
||||
void clear_func_type_list(garray_T *gap, type_T **func_type);
|
||||
type_T *alloc_type(type_T *type);
|
||||
void free_type(type_T *type);
|
||||
void set_tv_type(typval_T *tv, type_T *type);
|
||||
|
||||
Reference in New Issue
Block a user