mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
Merge pull request #25226 from neovim/backport-25223-to-release-0.9
[Backport release-0.9] fix: fix use after free
This commit is contained in:
commit
cb211e5746
@ -253,9 +253,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