Skip to content

Commit 9a3b331

Browse files
committed
patch 7.4.1815
Problem: Compiler warnings for unused variables. (Ajit Thakkar) Solution: Add a dummy initialization. (Yasuhiro Matsumoto)
1 parent b8d4905 commit 9a3b331

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/quickfix.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,9 @@ qf_init_ext(
207207
char_u *fmtstr = NULL;
208208
char_u *growbuf = NULL;
209209
int growbuflen;
210-
int growbufsiz;
211-
char_u *linebuf;
212-
int linelen;
210+
int growbufsiz = 0;
211+
char_u *linebuf = NULL;
212+
int linelen = 0;
213213
int discard;
214214
int col = 0;
215215
char_u use_viscol = FALSE;

src/version.c

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

754754
static int included_patches[] =
755755
{ /* Add new patch number below this line */
756+
/**/
757+
1815,
756758
/**/
757759
1814,
758760
/**/

0 commit comments

Comments
 (0)