0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.0.1286: occasional crash when using a channel

Problem:    Occasional crash when using a channel. (Marek)
Solution:   Decrement reference count later. (closes #2315)
This commit is contained in:
Bram Moolenaar
2017-11-11 15:54:00 +01:00
parent d09a206ee9
commit 5fd8b78214
2 changed files with 4 additions and 2 deletions

View File

@@ -2898,8 +2898,6 @@ channel_close(channel_T *channel, int invoke_close_cb)
channel->ch_close_cb = NULL;
channel->ch_close_partial = NULL;
--channel->ch_refcount;
if (channel_need_redraw)
{
channel_need_redraw = FALSE;
@@ -2910,6 +2908,8 @@ channel_close(channel_T *channel, int invoke_close_cb)
/* any remaining messages are useless now */
for (part = PART_SOCK; part < PART_IN; ++part)
drop_messages(channel, part);
--channel->ch_refcount;
}
}

View File

@@ -761,6 +761,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1286,
/**/
1285,
/**/