illegal memory read, units must be freed very, very late.

This commit is contained in:
Enno Rehling 2007-12-16 23:18:22 +00:00
parent e04184b673
commit 8dd186d303
2 changed files with 8 additions and 6 deletions

View file

@ -134,10 +134,10 @@ read_game(const char * filename)
static int static int
write_game(const char *filename) write_game(const char *filename)
{ {
free_units(); int result;
remove_empty_factions(true); remove_empty_factions(true);
result = writegame(filename, 0);
return writegame(filename, 0); return result;
} }
static summary * sum_begin = 0; static summary * sum_begin = 0;

View file

@ -337,6 +337,8 @@ game_done(void)
* nicht freigegebenem Speicher sucht, der nicht bis zum Ende benötigt * nicht freigegebenem Speicher sucht, der nicht bis zum Ende benötigt
* wird (temporäre Hilsstrukturen) */ * wird (temporäre Hilsstrukturen) */
free_units();
while (regions) { while (regions) {
region *r = regions; region *r = regions;
regions = r->next; regions = r->next;