From 9f254f2bee197be3d75ea034bc12c878da7be340 Mon Sep 17 00:00:00 2001 From: lpproj Date: Tue, 22 Sep 2015 12:15:26 +0900 Subject: [PATCH] Fix memory break on loading country information (in config.sys) --- kernel/config.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/config.c b/kernel/config.c index b808ab4..41b8a83 100644 --- a/kernel/config.c +++ b/kernel/config.c @@ -1502,7 +1502,8 @@ STATIC BOOL LoadCountryInfo(char *filenam, UWORD ctryCode, UWORD codePage) {"\377DBCS ", &nlsDBCSHardcoded} /* 7, not supported [yet] */ }; static struct subf_hdr hdr[8]; - int fd, entries, count, i; + static int entries, count; + int fd, i; char *filename = filenam == NULL ? "\\COUNTRY.SYS" : filenam; BOOL rc = FALSE;