aboutsummaryrefslogtreecommitdiff
path: root/src/process_hkl.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-09-08 12:22:37 +0200
committerThomas White <taw@physics.org>2012-02-22 15:26:57 +0100
commitc81d04eb776260f4499f3f3824bc5d02e42ef58c (patch)
tree83a57f955a65d65e5c65016662f5a7230cc5fe0d /src/process_hkl.c
parent9526f8c65df5fdb21247b57cd414c258375dc798 (diff)
Fix unit cell point group memory leak
Diffstat (limited to 'src/process_hkl.c')
-rw-r--r--src/process_hkl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process_hkl.c b/src/process_hkl.c
index 32529b6b..67e17212 100644
--- a/src/process_hkl.c
+++ b/src/process_hkl.c
@@ -687,7 +687,7 @@ int main(int argc, char *argv[])
free(model);
free(counts);
free(output);
- free(cell);
+ cell_free(cell);
return 0;
}