# HG changeset patch # User Christian Brabandt # Date 1455386404 -3600 # Node ID 72324c2e890a9745894c161dd0f7286d011bb626 # Parent 14937a52f35f69e251e93ebda9e16657e4926e72 commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9 Author: Bram Moolenaar Date: Sat Feb 13 18:50:38 2016 +0100 patch 7.4.1314 Problem: Warning for uninitialzed variable. Solution: Initialize it. (Dominique Pelle) diff --git a/src/channel.c b/src/channel.c --- a/src/channel.c +++ b/src/channel.c @@ -1537,7 +1537,7 @@ channel_send(int ch_idx, char_u *buf, ch channel_T *channel = &channels[ch_idx]; int len = (int)STRLEN(buf); int res; - int fd; + int fd = -1; int use_socket = FALSE; if (channel->ch_sock >= 0) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -748,6 +748,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1314, +/**/ 1313, /**/ 1312,