diff --git a/src/os_unix.c b/src/os_unix.c index 57ea4d9451..1ec59fcdcf 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -5692,7 +5692,10 @@ mch_create_pty_channel(job_T *job, jobopt_T *options) channel = add_channel(); if (channel == NULL) + { + close(pty_master_fd); return FAIL; + } job->jv_channel = channel; /* ch_refcount was set by add_channel() */ channel->ch_keep_open = TRUE; diff --git a/src/version.c b/src/version.c index 6be7b82553..6a0fa7b611 100644 --- a/src/version.c +++ b/src/version.c @@ -769,6 +769,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1064, /**/ 1063, /**/