Skip to content

Commit 597385a

Browse files
committed
patch 7.4.1583
Problem: Warning for unitinialized variable. Solution: Initialize it. (Dominique)
1 parent 6f2e4b3 commit 597385a

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/ex_cmds2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1179,7 +1179,7 @@ check_due_timer()
11791179
{
11801180
timer_T *timer;
11811181
long this_due;
1182-
long next_due;
1182+
long next_due = -1;
11831183
proftime_T now;
11841184
int did_one = FALSE;
11851185
# ifdef WIN3264

src/version.c

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

749749
static int included_patches[] =
750750
{ /* Add new patch number below this line */
751+
/**/
752+
1583,
751753
/**/
752754
1582,
753755
/**/

0 commit comments

Comments
 (0)