(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

View File

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