aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2024-01-02 11:18:58 +0100
committerThomas White <taw@physics.org>2024-01-30 10:33:54 +0100
commit1f0e73ae7bd898f4ff72a10ecc9452356b7804f1 (patch)
treedc0b2f8869c24e007f4d7c83cf2e86494c7bdddd /libcrystfel
parentd085422a351b830be090bda0ef50f63181d4eb33 (diff)
asdf: Remove unnecessary fftw_cleanup
This is only needed to reset FFTW to a "pristine" state, which is not required here, and possibly even detrimental.
Diffstat (limited to 'libcrystfel')
-rw-r--r--libcrystfel/src/indexers/asdf.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libcrystfel/src/indexers/asdf.c b/libcrystfel/src/indexers/asdf.c
index fe2d63e6..f74b9a4c 100644
--- a/libcrystfel/src/indexers/asdf.c
+++ b/libcrystfel/src/indexers/asdf.c
@@ -107,7 +107,6 @@ static void fftw_vars_free(struct fftw_vars fftw)
fftw_free(fftw.in);
fftw_free(fftw.out);
fftw_destroy_plan(fftw.p);
- fftw_cleanup();
}