diff options
author | Thomas White <taw@physics.org> | 2011-03-08 12:21:14 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:18 +0100 |
commit | 09a8efb16acc997c5039ec40c0877afa739b09ac (patch) | |
tree | 0490f25172df6f248be0122d5bf661395d084719 /src/indexamajig.c | |
parent | b458b4d68769ef412daabc7497beaaf034b82152 (diff) |
indexamajig: Fix memory leak
Diffstat (limited to 'src/indexamajig.c')
-rw-r--r-- | src/indexamajig.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c index 01912cac..2a81766b 100644 --- a/src/indexamajig.c +++ b/src/indexamajig.c @@ -337,6 +337,7 @@ done: free(image.flags); image_feature_list_free(image.features); hdfile_close(hdfile); + free_detector_geometry(image.det); } |