(svn r3470) - Fix: plug a memleak in _network_host_list.

This commit is contained in:
Darkvater 2006-01-29 18:34:43 +00:00
parent 20538e9b40
commit bb49381cd3
1 changed files with 5 additions and 2 deletions

View File

@ -867,13 +867,16 @@ void NetworkRebuildHostList(void)
uint i = 0;
NetworkGameList *item = _network_game_list;
while (item != NULL && i != lengthof(_network_host_list)) {
if (item->manually)
if (item->manually) {
free(_network_host_list[i]);
_network_host_list[i++] = str_fmt("%s:%i", item->info.hostname, item->port);
}
item = item->next;
}
for (; i < lengthof(_network_host_list); i++) {
_network_host_list[i] = strdup("");
free(_network_host_list[i]);
_network_host_list[i] = NULL;
}
}