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);
call term_sendkeys(buf, args)
call TermWait(buf, 150)
+ let file = 'crash/poc_uaf_check_argument_types'
+ let cmn_args = "%s -u NONE -i NONE -n -e -s -S %s -c ':qa!'\<cr>"
+ let args = printf(cmn_args, vim, file)
+ call term_sendkeys(buf, args)
+ call TermWait(buf, 150)
+
" clean up
exe buf .. "bw!"
bw!
VIM_CLEAR(fp->uf_arg_types);
VIM_CLEAR(fp->uf_block_ids);
VIM_CLEAR(fp->uf_va_name);
- clear_type_list(&fp->uf_type_list);
+ clear_func_type_list(&fp->uf_type_list, &fp->uf_func_type);
// Increment the refcount of this function to avoid it being freed
// recursively when the partial is freed.
{
VIM_CLEAR(fp->uf_arg_types);
VIM_CLEAR(fp->uf_va_name);
- clear_type_list(&fp->uf_type_list);
+ clear_func_type_list(&fp->uf_type_list, &fp->uf_func_type);
}
if (free_fp)
VIM_CLEAR(fp);
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 2158,
/**/
2157,
/**/
ga_clear(gap);
}
+ void
+clear_func_type_list(garray_T *gap, type_T **func_type)
+{
+ while (gap->ga_len > 0)
+ {
+ // func_type pointing to the uf_type_list, so reset pointer
+ if (*func_type == ((type_T **)gap->ga_data)[--gap->ga_len])
+ *func_type = &t_func_any;
+ vim_free(((type_T **)gap->ga_data)[gap->ga_len]);
+ }
+ ga_clear(gap);
+}
+
/*
* Take a type that is using entries in a growarray and turn it into a type
* with allocated entries.