# HG changeset patch # User Christian Brabandt # Date 1441831504 -7200 # Node ID 84efaf06f195b8f4bd8eee012cb9c01e60a40d57 # Parent f22cb1522bcb01d39c3da1123f7f10bed38e540d commit https://github.com/vim/vim/commit/ed84b76021df763619cabaedddc44eb5ee849136 Author: Bram Moolenaar Date: Wed Sep 9 22:35:29 2015 +0200 patch 7.4.865 Problem: Compiler warning for uninitialized variable. Solution: Initialize. diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c --- 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 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 865, +/**/ 864, /**/ 863,