mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2025-01-13 23:28:04 +03:00
Fix crash caused by ReloadMapCycleFile function
This commit is contained in:
parent
a8802e6276
commit
b1c055369d
@ -4418,7 +4418,12 @@ int ReloadMapCycleFile(char *filename, mapcycle_t *cycle)
|
||||
if (Q_strlen(pToken) <= 0)
|
||||
break;
|
||||
|
||||
#ifdef REGAMEDLL_FIXES
|
||||
Q_strncpy(szMap, pToken, sizeof(szMap) - 1);
|
||||
szMap[sizeof(szMap) - 1] = 0;
|
||||
#else
|
||||
Q_strcpy(szMap, pToken);
|
||||
#endif
|
||||
|
||||
// Any more tokens on this line?
|
||||
if (SharedTokenWaiting(pFileList))
|
||||
|
Loading…
x
Reference in New Issue
Block a user