diff options
author | Thomas White <taw@physics.org> | 2010-06-03 12:12:46 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-06-03 12:12:46 +0200 |
commit | 056de872eb5ba91f282b605d4bd425ac855acf11 (patch) | |
tree | 41af1e66a07cd6d0a455569d5cb56d6f23175303 /src/indexamajig.c | |
parent | ff820257c5ab121aef703aede469212c63c15afb (diff) |
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 110c091f..5c2868ef 100644 --- a/src/indexamajig.c +++ b/src/indexamajig.c @@ -368,6 +368,7 @@ static void *process_image(void *pargsv) done: free(image.data); + free(image.flags); free(image.det.panels); image_feature_list_free(image.features); free(image.hits); |