]> granicus.if.org Git - vim/commitdiff
patch 7.4.865 v7.4.865
authorBram Moolenaar <Bram@vim.org>
Wed, 9 Sep 2015 20:35:29 +0000 (22:35 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 9 Sep 2015 20:35:29 +0000 (22:35 +0200)
Problem:    Compiler warning for uninitialized variable.
Solution:   Initialize.

src/ex_cmds2.c
src/version.c

index 3cc2d45a716cc9b5591f058aa0ff397d1d8ff888..30f9e9d18b5755e33b63af5ed76c32720e33667f 100644 (file)
@@ -2447,7 +2447,7 @@ ex_listdo(eap)
 #endif
     char_u     *p_shm_save;
 #ifdef FEAT_QUICKFIX
-    int                qf_size;
+    int                qf_size = 0;
     int                qf_idx;
 #endif
 
index d1ee1f28ee60637a9deb2d7e3dbf71639efeeb65..a9b20dc0dbea1f16ad1041591996ab66237134b7 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    865,
 /**/
     864,
 /**/