diff options
Diffstat (limited to 'libcrystfel/src/index.c')
-rw-r--r-- | libcrystfel/src/index.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libcrystfel/src/index.c b/libcrystfel/src/index.c index cb3639e4..28f33388 100644 --- a/libcrystfel/src/index.c +++ b/libcrystfel/src/index.c @@ -109,10 +109,14 @@ void cleanup_indexing(IndexingMethod *indms, IndexingPrivate **privs) switch ( indms[n] & INDEXING_METHOD_MASK ) { case INDEXING_NONE : + break; + case INDEXING_DIRAX : + dirax_cleanup(privs[n]); + break; + case INDEXING_MOSFLM : - /* No cleanup */ - /* FIXME: Not true */ + mosflm_cleanup(privs[n]); break; case INDEXING_REAX : |