mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
updated for version 7.4.620
Problem: Compiler warning for unitinialized variable. (Tony Mechelynck) Solution: Initialize "did_free". (Ben Fritz)
This commit is contained in:
@@ -6815,7 +6815,7 @@ garbage_collect()
|
|||||||
win_T *wp;
|
win_T *wp;
|
||||||
int i;
|
int i;
|
||||||
funccall_T *fc, **pfc;
|
funccall_T *fc, **pfc;
|
||||||
int did_free;
|
int did_free = FALSE;
|
||||||
int did_free_funccal = FALSE;
|
int did_free_funccal = FALSE;
|
||||||
#ifdef FEAT_WINDOWS
|
#ifdef FEAT_WINDOWS
|
||||||
tabpage_T *tp;
|
tabpage_T *tp;
|
||||||
|
@@ -741,6 +741,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
620,
|
||||||
/**/
|
/**/
|
||||||
619,
|
619,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user