More defensive-coding fixes from James H.

[originally from svn r8605]
This commit is contained in:
Simon Tatham
2009-07-01 22:01:21 +00:00
parent 652f03a8ae
commit cfdba00313
4 changed files with 7 additions and 2 deletions

1
cube.c
View File

@ -996,6 +996,7 @@ static void free_game(game_state *state)
sfree(state->grid->squares);
sfree(state->grid);
}
sfree(state->bluemask);
sfree(state->facecolours);
sfree(state);
}