Fix leak in pdiff lpyramid

This was a leak in the test suite only, (and then only when tests failed).
This commit is contained in:
Carl Worth 2007-03-02 09:32:14 -08:00
parent 6da7f14033
commit 02f2ece88d

View file

@ -98,6 +98,8 @@ lpyramid_destroy (lpyramid_t *pyramid)
for (i=0; i<MAX_PYR_LEVELS; i++)
free (pyramid->levels[i]);
free (pyramid);
}
float