Fix mingw bug with free macro

This commit is contained in:
jsalmon3 2002-05-20 23:43:31 +00:00
parent 3f5d7aa8d8
commit 486142cd87

View file

@ -127,7 +127,8 @@ global void CleanPlayers(void)
//
if( (ptr=RaceWcNames) ) { // Free all old names
while( *ptr ) {
free(*ptr++);
free(*ptr);
ptr++;
}
free(RaceWcNames);
RaceWcNames=NULL;