aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-01-20 16:14:37 +0100
committerThomas White <taw@physics.org>2010-01-20 16:14:37 +0100
commit504245c1f0f501bf5f04f72eeb4e1a5f60fdc40d (patch)
tree342dfbc04001725c14305f310868033744eb3bd9
parentb6ebce9d7741b58fa5a50fe3e74ef7e3a2003772 (diff)
Fix the one remaining memory leak
-rw-r--r--src/indexamajig.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c
index 2604dd14..68b39c20 100644
--- a/src/indexamajig.c
+++ b/src/indexamajig.c
@@ -172,6 +172,7 @@ int main(int argc, char *argv[])
done:
free(image.data);
+ image_feature_list_free(image.features);
hdfile_close(hdfile);
H5close();