]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.4.620 v7.4.620
authorBram Moolenaar <Bram@vim.org>
Wed, 4 Feb 2015 22:06:45 +0000 (23:06 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 4 Feb 2015 22:06:45 +0000 (23:06 +0100)
Problem:    Compiler warning for unitinialized variable. (Tony Mechelynck)
Solution:   Initialize "did_free". (Ben Fritz)

src/eval.c
src/version.c

index b8288c292d609fbd787f779eceebf847dcaa4a11..d468403a0854289ae61e4f01998cf043896a579e 100644 (file)
@@ -6815,7 +6815,7 @@ garbage_collect()
     win_T      *wp;
     int                i;
     funccall_T *fc, **pfc;
-    int                did_free;
+    int                did_free = FALSE;
     int                did_free_funccal = FALSE;
 #ifdef FEAT_WINDOWS
     tabpage_T  *tp;
index 8bf1fbbc519ed1f36df22db3f559a69890d87b53..f46f917b4216771c9e5c17659de93e1f1297cb30 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    620,
 /**/
     619,
 /**/