Tracks: fix a small memory leak.

Spotted by Leak Sanitiser while I was testing the standalone solver.
This commit is contained in:
Simon Tatham
2020-02-26 06:19:26 +00:00
parent 5e9dc42e54
commit d022a1c11c

View File

@ -706,6 +706,7 @@ strip_clues:
done: done:
sfree(positions); sfree(positions);
sfree(nedges_previous_solve);
free_game(scratch); free_game(scratch);
return ret; return ret;
} }