Skip to content

Commit e4aa908

Browse files
brammooldouglasdrumond
authored andcommitted
updated for version 7.4.620
Problem: Compiler warning for unitinialized variable. (Tony Mechelynck) Solution: Initialize "did_free". (Ben Fritz)
1 parent d445ce8 commit e4aa908

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/eval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6815,7 +6815,7 @@ garbage_collect()
68156815
win_T *wp;
68166816
int i;
68176817
funccall_T *fc, **pfc;
6818-
int did_free;
6818+
int did_free = FALSE;
68196819
int did_free_funccal = FALSE;
68206820
#ifdef FEAT_WINDOWS
68216821
tabpage_T *tp;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
620,
744746
/**/
745747
619,
746748
/**/

0 commit comments

Comments
 (0)