diff options
author | Thomas White <taw@bitwiz.org.uk> | 2010-11-14 21:22:00 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:05 +0100 |
commit | 0fd8bf4b0fd4aa40cfffa9cfe0b8f7d9746c57b4 (patch) | |
tree | a9f5c969bfb5e0a05e9fbee6dbc86b22384e5d03 | |
parent | 38f7657477e16117655db03b05e3da6a126009d8 (diff) |
pattern_sim: Fix memory leaks
-rw-r--r-- | src/diffraction-gpu.c | 3 | ||||
-rw-r--r-- | src/pattern_sim.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/diffraction-gpu.c b/src/diffraction-gpu.c index c76c4aa0..bbed9a9b 100644 --- a/src/diffraction-gpu.c +++ b/src/diffraction-gpu.c @@ -474,6 +474,9 @@ void cleanup_gpu(struct gpu_context *gctx) } } + free(gctx->sinc_luts); + free(gctx->sinc_lut_ptrs); + clReleaseCommandQueue(gctx->cq); clReleaseContext(gctx->ctx); free(gctx); diff --git a/src/pattern_sim.c b/src/pattern_sim.c index ae2a6943..4531c85b 100644 --- a/src/pattern_sim.c +++ b/src/pattern_sim.c @@ -456,6 +456,7 @@ int main(int argc, char *argv[]) find_projected_peaks(&image, cell, 0, 0.1); output_intensities(&image, cell, NULL, 0, 1, 0, stdout, 0, 0.1); + free(image.cpeaks); } if ( powder_fn != NULL ) { |