changeset 13300:803294329951 v8.0.1524

patch 8.0.1524: compiler warnings for uninitialized variables commit https://github.com/vim/vim/commit/9c8816bd306a003c2ac3dce161be3fef481c9902 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 19 21:50:42 2018 +0100 patch 8.0.1524: compiler warnings for uninitialized variables Problem: Compiler warnings for uninitialized variables. (Tony Mechelynck) Solution: Initialize variables.
author Christian Brabandt <cb@256bit.org>
date Mon, 19 Feb 2018 22:00:07 +0100
parents 1b2b8b5e2181
children 466abccbe41d
files src/terminal.c src/version.c
diffstat 2 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/terminal.c
+++ b/src/terminal.c
@@ -3277,9 +3277,9 @@ term_load_dump(typval_T *argvars, typval
     char_u	buf1[NUMBUFLEN];
     char_u	buf2[NUMBUFLEN];
     char_u	*fname1;
-    char_u	*fname2;
+    char_u	*fname2 = NULL;
     FILE	*fd1;
-    FILE	*fd2;
+    FILE	*fd2 = NULL;
     char_u	*textline = NULL;
 
     /* First open the files.  If this fails bail out. */
@@ -3460,7 +3460,7 @@ term_load_dump(typval_T *argvars, typval
 theend:
     vim_free(textline);
     fclose(fd1);
-    if (do_diff)
+    if (fd2 != NULL)
 	fclose(fd2);
 }
 
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1524,
+/**/
     1523,
 /**/
     1522,