Problem: Compiler warnings for uninitialized variables. (Tony Mechelynck)
Solution: Initialize variables.
char_u buf1[NUMBUFLEN];
char_u buf2[NUMBUFLEN];
char_u *fname1;
- char_u *fname2;
+ char_u *fname2 = NULL;
FILE *fd1;
- FILE *fd2;
+ FILE *fd2 = NULL;
char_u *textline = NULL;
/* First open the files. If this fails bail out. */
theend:
vim_free(textline);
fclose(fd1);
- if (do_diff)
+ if (fd2 != NULL)
fclose(fd2);
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1524,
/**/
1523,
/**/