Fix run-shell -d with no command, GitHub issue 2885.

pull/2899/head
nicm 2021-09-16 06:39:22 +00:00
parent a19cac5c46
commit 3c3d371f99
1 changed files with 7 additions and 1 deletions

View File

@ -181,7 +181,13 @@ cmd_run_shell_timer(__unused int fd, __unused short events, void* arg)
struct cmd_list *cmdlist;
char *error;
if (cdata->state == NULL && cmd != NULL) {
if (cdata->state == NULL) {
if (cmd == NULL) {
if (cdata->item != NULL)
cmdq_continue(cdata->item);
cmd_run_shell_free(cdata);
return;
}
if (job_run(cmd, 0, NULL, cdata->s, cdata->cwd, NULL,
cmd_run_shell_callback, cmd_run_shell_free, cdata,
cdata->flags, -1, -1) == NULL)