diff options
Diffstat (limited to 'src/common/mapindex.c')
-rw-r--r-- | src/common/mapindex.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/mapindex.c b/src/common/mapindex.c index 36bd32cb5..e60287a38 100644 --- a/src/common/mapindex.c +++ b/src/common/mapindex.c @@ -115,7 +115,8 @@ void mapindex_init(void) ShowFatalError("Unable to read mapindex config file %s!\n", mapindex_cfgfile); exit(1); //Server can't really run without this file. } - while(fgets(line,1020,fp)){ + while(fgets(line, sizeof(line), fp)) + { if(line[0] == '/' && line[1] == '/') continue; |