return 0;
}
}
+ if (job->jv_status == JOB_FAILED)
+ {
+ ch_log(job->jv_channel, "Job failed to start, job_stop() skipped");
+ return 0;
+ }
if (job->jv_status == JOB_ENDED)
{
ch_log(job->jv_channel, "Job has already ended, job_stop() skipped");
}
else
{
+ free_terminal(term);
+ curbuf->b_term = NULL;
+
/* Wiping out the buffer will also close the window and call
* free_terminal(). */
do_buffer(DOBUF_WIPE, DOBUF_CURRENT, FORWARD, 0, TRUE);
if (term->tl_job != NULL)
{
- if (term->tl_job->jv_status != JOB_ENDED)
+ if (term->tl_job->jv_status != JOB_ENDED
+ && term->tl_job->jv_status != JOB_FAILED)
job_stop(term->tl_job, NULL, "kill");
job_unref(term->tl_job);
}
setup_job_options(&opt, rows, cols);
term->tl_job = job_start(argvars, &opt);
- return term->tl_job != NULL ? OK : FAIL;
+ return term->tl_job != NULL
+ && term->tl_job->jv_channel != NULL
+ && term->tl_job->jv_status != JOB_FAILED ? OK : FAIL;
}
/*