diff options
author | Thomas White <taw@physics.org> | 2015-12-18 15:40:33 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2015-12-18 15:40:33 +0100 |
commit | 120fca2d9a7abd79e41ef5051bd22efedcb2d493 (patch) | |
tree | c39c1f530c2b0a7d8f0b3113e78a396028421c7e /src | |
parent | 693aae4d2219632d15174fe4c4f9d0526d6166c4 (diff) |
Saturation map fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/process_image.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/process_image.c b/src/process_image.c index 4fd19176..5d4212e2 100644 --- a/src/process_image.c +++ b/src/process_image.c @@ -337,9 +337,11 @@ void process_image(const struct index_args *iargs, struct pattern_args *pargs, for ( i=0; i<image.det->n_panels; i++ ) { free(image.dp[i]); free(image.bad[i]); + free(image.sat[i]); } free(image.dp); free(image.bad); + free(image.sat); image_feature_list_free(image.features); free_detector_geometry(image.det); |