Doubled the data array in config.c, fixes an array overrun.

This commit is contained in:
OBattler
2020-01-14 22:24:56 +01:00
parent 2d5a8dc49c
commit f710954c6f

View File

@@ -81,7 +81,7 @@ typedef struct {
list_t list;
char name[128];
char data[256];
char data[512];
wchar_t wdata[512];
} entry_t;