fix null termination out of array bounds
This commit is contained in:
parent
3992f1a59c
commit
557bb5a1ce
2 changed files with 2 additions and 2 deletions
|
@ -1308,7 +1308,7 @@ void BotMatch_StartTeamLeaderShip(bot_state_t *bs, bot_match_t *match) {
|
|||
//get the team mate that will be the team leader
|
||||
trap_BotMatchVariable(match, NETNAME, teammate, sizeof(teammate));
|
||||
strncpy(bs->teamleader, teammate, sizeof(bs->teamleader));
|
||||
bs->teamleader[sizeof(bs->teamleader)] = '\0';
|
||||
bs->teamleader[sizeof(bs->teamleader)-1] = '\0';
|
||||
}
|
||||
//chats for someone else
|
||||
else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue