changeset 8039:72324c2e890a v7.4.1314

commit https://github.com/vim/vim/commit/e516c39ee97cb85fa230fbb1b1f54ad1346920d9 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 13 18:50:38 2016 +0100 patch 7.4.1314 Problem: Warning for uninitialzed variable. Solution: Initialize it. (Dominique Pelle)
author Christian Brabandt <cb@256bit.org>
date Sat, 13 Feb 2016 19:00:04 +0100
parents 14937a52f35f
children 306f639c99a8
files src/channel.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)
--- 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,