Memory leak fix from James H.

[originally from svn r8850]
This commit is contained in:
Simon Tatham
2010-01-18 21:23:25 +00:00
parent 6b650f894c
commit 3c6280ef8b

4
keen.c
View File

@ -2247,6 +2247,10 @@ static void game_print(drawing *dr, game_state *state, int tilesize)
FONT_VARIABLE, TILESIZE/2, FONT_VARIABLE, TILESIZE/2,
ALIGN_VCENTRE | ALIGN_HCENTRE, ink, str); ALIGN_VCENTRE | ALIGN_HCENTRE, ink, str);
} }
sfree(minus_sign);
sfree(times_sign);
sfree(divide_sign);
} }
#ifdef COMBINED #ifdef COMBINED