0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.2.4042: Vim9: build error

Problem:    Vim9: build error.
Solution:   Use grow array instead of character pointer.
This commit is contained in:
Bram Moolenaar
2022-01-08 16:02:59 +00:00
parent aa9b3cacd5
commit 1433672568
2 changed files with 7 additions and 4 deletions

View File

@@ -3344,13 +3344,14 @@ exec_instructions(ectx_T *ectx)
list_functions(NULL);
else
{
exarg_T ea;
char_u *line_to_free = NULL;
exarg_T ea;
garray_T lines_to_free;
CLEAR_FIELD(ea);
ea.cmd = ea.arg = iptr->isn_arg.string;
define_function(&ea, NULL, &line_to_free);
vim_free(line_to_free);
ga_init2(&lines_to_free, sizeof(char_u *), 50);
define_function(&ea, NULL, &lines_to_free);
ga_clear_strings(&lines_to_free);
}
break;