From: Bram Moolenaar Date: Wed, 9 Sep 2015 20:35:29 +0000 (+0200) Subject: patch 7.4.865 X-Git-Tag: v7.4.865 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed84b76021df763619cabaedddc44eb5ee849136;p=vim 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 3cc2d45a7..30f9e9d18 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 d1ee1f28e..a9b20dc0d 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, /**/