mirror of
https://github.com/tmux/tmux.git
synced 2025-09-09 04:50:10 +00:00
Plug small memory leak in run-shell
Don't potentially leak the command to run were it to fail.
This commit is contained in:
@ -101,6 +101,7 @@ cmd_run_shell_exec(struct cmd *self, struct cmd_q *cmdq)
|
|||||||
cmdq->references++;
|
cmdq->references++;
|
||||||
|
|
||||||
job_run(shellcmd, cmd_run_shell_callback, cmd_run_shell_free, cdata);
|
job_run(shellcmd, cmd_run_shell_callback, cmd_run_shell_free, cdata);
|
||||||
|
free(shellcmd);
|
||||||
|
|
||||||
if (cdata->bflag)
|
if (cdata->bflag)
|
||||||
return (CMD_RETURN_NORMAL);
|
return (CMD_RETURN_NORMAL);
|
||||||
|
Reference in New Issue
Block a user