mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
fix: fix use after free
This commit is contained in:
parent
f54677132b
commit
8a0eb90e14
@ -256,9 +256,9 @@ static int build_cmd_line(char **argv, wchar_t **cmd_line, bool is_cmdexe)
|
||||
QUEUE_FOREACH(q, &args_q, {
|
||||
ArgNode *arg_node = QUEUE_DATA(q, ArgNode, node);
|
||||
xstrlcat(utf8_cmd_line, arg_node->arg, utf8_cmd_line_len);
|
||||
QUEUE_REMOVE(q);
|
||||
xfree(arg_node->arg);
|
||||
xfree(arg_node);
|
||||
QUEUE_REMOVE(q);
|
||||
if (!QUEUE_EMPTY(&args_q)) {
|
||||
xstrlcat(utf8_cmd_line, " ", utf8_cmd_line_len);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user