patch 7.4.865
Problem:    Compiler warning for uninitialized variable.
Solution:   Initialize.
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index 3cc2d45..30f9e9d 100644
--- a/src/ex_cmds2.c
+++ b/src/ex_cmds2.c
@@ -2447,7 +2447,7 @@
 #endif
     char_u	*p_shm_save;
 #ifdef FEAT_QUICKFIX
-    int		qf_size;
+    int		qf_size = 0;
     int		qf_idx;
 #endif
 
diff --git a/src/version.c b/src/version.c
index d1ee1f2..a9b20dc 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    865,
+/**/
     864,
 /**/
     863,