From ed84b76021df763619cabaedddc44eb5ee849136 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 9 Sep 2015 22:35:29 +0200 Subject: [PATCH] patch 7.4.865 Problem: Compiler warning for uninitialized variable. Solution: Initialize. --- src/ex_cmds2.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 3cc2d45a71..30f9e9d18b 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -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 diff --git a/src/version.c b/src/version.c index d1ee1f28ee..a9b20dc0db 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 865, /**/ 864, /**/