We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df48fb4 commit 2e45d21Copy full SHA for 2e45d21
2 files changed
src/term.c
@@ -6197,7 +6197,10 @@ gui_get_color_cmn(char_u *name)
6197
char_u *s = vim_strsave((char_u *)line + pos);
6198
6199
if (s == NULL)
6200
+ {
6201
+ fclose(fd);
6202
return INVALCOLOR;
6203
+ }
6204
colornames_table[size].color_name = s;
6205
colornames_table[size].color = (guicolor_T)RGB(r, g, b);
6206
}
src/version.c
@@ -758,6 +758,8 @@ static char *(features[]) =
758
759
static int included_patches[] =
760
{ /* Add new patch number below this line */
761
+/**/
762
+ 2091,
763
/**/
764
2090,
765
0 commit comments