diff options
| author | Simon Tatham <anakin@pobox.com> | 2004-05-22 13:07:23 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2004-05-22 13:07:23 +0000 |
| commit | fc862ce0f2f7786944fa7caea140e39f4a2102b2 (patch) | |
| tree | 295cbb0284918c848a166ac0469bf1d53d139b78 | |
| parent | 61f08e7634e0e39148a784c0ce6efcc112ed5a7a (diff) | |
| download | puzzles-fc862ce0f2f7786944fa7caea140e39f4a2102b2.zip puzzles-fc862ce0f2f7786944fa7caea140e39f4a2102b2.tar.gz puzzles-fc862ce0f2f7786944fa7caea140e39f4a2102b2.tar.bz2 puzzles-fc862ce0f2f7786944fa7caea140e39f4a2102b2.tar.xz | |
Fix a memory leak.
[originally from svn r4239]
| -rw-r--r-- | rect.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1357,6 +1357,7 @@ void game_redraw(frontend *fe, game_drawstate *ds, game_state *oldstate, sfree(vedge); } + sfree(corners); sfree(correct); } |