aboutsummaryrefslogtreecommitdiff
path: root/galaxies.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2009-06-17 20:01:45 +0000
committerSimon Tatham <anakin@pobox.com>2009-06-17 20:01:45 +0000
commit0687980f0c3204d283848ba41761a7724e4a6168 (patch)
treefb454b19acbc55db35dd3087648d2dc0de52f0bb /galaxies.c
parent3cd83d05e899e62232b68ea95cf7f07505ebd79f (diff)
downloadpuzzles-0687980f0c3204d283848ba41761a7724e4a6168.zip
puzzles-0687980f0c3204d283848ba41761a7724e4a6168.tar.gz
puzzles-0687980f0c3204d283848ba41761a7724e4a6168.tar.bz2
puzzles-0687980f0c3204d283848ba41761a7724e4a6168.tar.xz
Memory management and other fixes from James H.
[originally from svn r8596]
Diffstat (limited to 'galaxies.c')
-rw-r--r--galaxies.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/galaxies.c b/galaxies.c
index b80515d..55efa94 100644
--- a/galaxies.c
+++ b/galaxies.c
@@ -365,7 +365,7 @@ static char *game_text_format(game_state *state)
case s_tile:
if (sp->flags & F_TILE_ASSOC) {
space *dot = sp2dot(state, sp->x, sp->y);
- if (dot->flags & F_DOT)
+ if (dot && dot->flags & F_DOT)
*p++ = (dot->flags & F_DOT_BLACK) ? 'B' : 'W';
else
*p++ = '?'; /* association with not-a-dot. */
@@ -1450,6 +1450,7 @@ generate:
state = copy2;
}
}
+ sfree(posns);
}
#endif