(svn r8066) - Codechange: MallocT(), CallocT(), ReallocT() now return the pointer to allocated memory instead of modifying the pointer given as parameter
This commit is contained in:
@@ -167,7 +167,7 @@ static void BuildNetworkGameList(network_ql_d *nqld)
|
||||
|
||||
/* Create temporary array of games to use for listing */
|
||||
free(nqld->sort_list);
|
||||
MallocT(&nqld->sort_list, n);
|
||||
nqld->sort_list = MallocT<NetworkGameList*>(n);
|
||||
if (nqld->sort_list == NULL) error("Could not allocate memory for the network-game-sorting-list");
|
||||
nqld->l.list_length = n;
|
||||
|
||||
|
Reference in New Issue
Block a user