diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-07-22 18:39:00 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-07-22 18:39:00 +0200 |
commit | 61a6605ea1201eb49a126ca696fcfc56caf5dca6 (patch) | |
tree | 5b3aed6b0493301cfabfa088f59043d97081d6ed /src | |
parent | 9f1f49b839fbc5d099301d5318a5e1e70dd59b7c (diff) | |
download | vim-git-61a6605ea1201eb49a126ca696fcfc56caf5dca6.tar.gz |
patch 8.0.0746: when :term fails the job is not properly cleaned upv8.0.0746
Problem: When :term fails the job is not properly cleaned up.
Solution: Free the terminal. Handle a job that failed to start. (closes
#1858)
Diffstat (limited to 'src')
-rw-r--r-- | src/channel.c | 5 | ||||
-rw-r--r-- | src/os_unix.c | 4 | ||||
-rw-r--r-- | src/terminal.c | 10 | ||||
-rw-r--r-- | src/version.c | 2 |
4 files changed, 18 insertions, 3 deletions
diff --git a/src/channel.c b/src/channel.c index 7af19b041..c79107c86 100644 --- a/src/channel.c +++ b/src/channel.c @@ -5189,6 +5189,11 @@ job_stop(job_T *job, typval_T *argvars, char *type) 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"); diff --git a/src/os_unix.c b/src/os_unix.c index 156168fcc..bbc74c7f7 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -5475,7 +5475,9 @@ mch_stop_job(job_T *job, char_u *how) job_pid = -job_pid; #endif - kill(job_pid, sig); + /* Never kill ourselves! */ + if (job_pid != 0) + kill(job_pid, sig); return OK; } diff --git a/src/terminal.c b/src/terminal.c index aafd7e89f..7d807acbc 100644 --- a/src/terminal.c +++ b/src/terminal.c @@ -203,6 +203,9 @@ ex_terminal(exarg_T *eap) } 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); @@ -235,7 +238,8 @@ free_terminal(term_T *term) 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); } @@ -941,7 +945,9 @@ term_and_job_init(term_T *term, int rows, int cols, char_u *cmd) 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; } /* diff --git a/src/version.c b/src/version.c index b0058e4d3..a0622588a 100644 --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 746, +/**/ 745, /**/ 744, |