diff options
| author | Simon Tatham <anakin@pobox.com> | 2020-02-26 06:19:26 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2020-02-26 06:32:35 +0000 |
| commit | d022a1c11c185027fad937cbe9cd2c318025ee04 (patch) | |
| tree | f6bf96984b0a46b107a6ba19ea467bdcd2b8f3f6 /tracks.c | |
| parent | 5e9dc42e54e777dbd014b4fc6e9312061d000915 (diff) | |
| download | puzzles-d022a1c11c185027fad937cbe9cd2c318025ee04.zip puzzles-d022a1c11c185027fad937cbe9cd2c318025ee04.tar.gz puzzles-d022a1c11c185027fad937cbe9cd2c318025ee04.tar.bz2 puzzles-d022a1c11c185027fad937cbe9cd2c318025ee04.tar.xz | |
Tracks: fix a small memory leak.
Spotted by Leak Sanitiser while I was testing the standalone solver.
Diffstat (limited to 'tracks.c')
| -rw-r--r-- | tracks.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -706,6 +706,7 @@ strip_clues: done: sfree(positions); + sfree(nedges_previous_solve); free_game(scratch); return ret; } |