Another while (( ..)

This commit is contained in:
Fredrik Holmqvist 2018-04-24 21:46:31 +02:00
parent a7affb9189
commit 72c715ecbe
1 changed files with 1 additions and 1 deletions

View File

@ -720,7 +720,7 @@ uninit()
// free all sessions from the hashes
team_rules *teamRules = sTeamHash->Clear(true);
while ((teamRules != NULL) {
while (teamRules != NULL) {
team_rules *next = teamRules->next;
delete teamRules;
teamRules = next;