diff options
author | Thomas White <taw@physics.org> | 2010-05-27 11:39:49 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-05-27 11:39:49 +0200 |
commit | ccd31b477da6295255720e485ad0b30293597355 (patch) | |
tree | b6400e5a81b30849bd4f1b7f15f602aa7b30df46 | |
parent | e7e15110bd07b1f3da1367862d4a57d37139638f (diff) |
Plug obvious memory leak
-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 476b87c2..80557dab 100644 --- a/src/indexamajig.c +++ b/src/indexamajig.c @@ -371,6 +371,7 @@ done: free(image.det.panels); image_feature_list_free(image.features); free(data_for_measurement); + free(image.hits); hdfile_close(hdfile); if ( image.indexed_cell == NULL ) { |