From: David Levine Date: Sun, 26 Jun 2016 01:19:37 +0000 (-0400) Subject: Moved free(cp) to right after last (and only) use of cp. The statement X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/79f012b76eba04d50a36a4a37c57458a8d521434?ds=inline;hp=79f012b76eba04d50a36a4a37c57458a8d521434 Moved free(cp) to right after last (and only) use of cp. The statement was flagged by gcc 6 -Wmisleading-indentation. In its original location, it would not always have been called, resulting in leaked memory. ---