mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
lmao how did i forget a null terminator
This commit is contained in:
parent
17f2e83d4f
commit
834a36c1ed
1 changed files with 2 additions and 1 deletions
|
|
@ -1304,7 +1304,7 @@ static void SV_SendServerInfo(INT32 node, tic_t servertime)
|
|||
if (strcmp(mapheaderinfo[gamemap-1]->lvlttl, ""))
|
||||
{
|
||||
char *read = mapheaderinfo[gamemap-1]->lvlttl, *writ = netbuffer->u.serverinfo.maptitle;
|
||||
while (*read != '\0' && (read-mapheaderinfo[gamemap-1]->lvlttl) < 33)
|
||||
while (*read != '\0' && (read-mapheaderinfo[gamemap-1]->lvlttl) < 32)
|
||||
{
|
||||
if (!(*read & 0x80))
|
||||
{
|
||||
|
|
@ -1313,6 +1313,7 @@ static void SV_SendServerInfo(INT32 node, tic_t servertime)
|
|||
}
|
||||
read++;
|
||||
}
|
||||
*writ = '\0';
|
||||
//strncpy(netbuffer->u.serverinfo.maptitle, (char *)mapheaderinfo[gamemap-1]->lvlttl, 33);
|
||||
}
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue