diff options
| author | Simon Tatham <anakin@pobox.com> | 2010-01-07 18:15:09 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2010-01-07 18:15:09 +0000 |
| commit | 7c3413a2f2ab0d22f4e43c92a9c215bc24f88baf (patch) | |
| tree | f3478136813994e0dc47d5552498fe91a17814a4 /windows.c | |
| parent | 25005314232a1e30be748e08bbe0433010fb4eb8 (diff) | |
| download | puzzles-7c3413a2f2ab0d22f4e43c92a9c215bc24f88baf.zip puzzles-7c3413a2f2ab0d22f4e43c92a9c215bc24f88baf.tar.gz puzzles-7c3413a2f2ab0d22f4e43c92a9c215bc24f88baf.tar.bz2 puzzles-7c3413a2f2ab0d22f4e43c92a9c215bc24f88baf.tar.xz | |
Memory leak fix from James H.
[originally from svn r8815]
Diffstat (limited to 'windows.c')
| -rw-r--r-- | windows.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -239,6 +239,7 @@ void frontend_free(frontend *fe) sfree(fe->brushes); sfree(fe->pens); sfree(fe->presets); + sfree(fe->fonts); sfree(fe); } |