aboutsummaryrefslogtreecommitdiff
path: root/cube.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2009-07-01 22:01:21 +0000
committerSimon Tatham <anakin@pobox.com>2009-07-01 22:01:21 +0000
commitcfdba00313386042c38460def6fe141b252858fe (patch)
tree28e6a53dd57a145cd175bb6d0697c7459d15a5cb /cube.c
parent652f03a8aefa3267bd0acad64eadcdcd23cdf507 (diff)
downloadpuzzles-cfdba00313386042c38460def6fe141b252858fe.zip
puzzles-cfdba00313386042c38460def6fe141b252858fe.tar.gz
puzzles-cfdba00313386042c38460def6fe141b252858fe.tar.bz2
puzzles-cfdba00313386042c38460def6fe141b252858fe.tar.xz
More defensive-coding fixes from James H.
[originally from svn r8605]
Diffstat (limited to 'cube.c')
-rw-r--r--cube.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cube.c b/cube.c
index ae3f716..18787c0 100644
--- a/cube.c
+++ b/cube.c
@@ -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);
}