From 4df0f1078dbf4ce5a5b1b7967c09a404fae26748 Mon Sep 17 00:00:00 2001 From: Nick Croucher Date: Fri, 19 Apr 2024 10:27:21 +0100 Subject: [PATCH] Switch off memory freeing --- src/Newickform.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Newickform.c b/src/Newickform.c index cdbfa5bd..6827190b 100644 --- a/src/Newickform.c +++ b/src/Newickform.c @@ -308,8 +308,8 @@ newick_node* build_newick_tree(char * filename, FILE *vcf_file_pointer,int * snp free(nodeArray); free(node_depths); - free(node_sequences); - free(node_names); +// free(node_sequences); +// free(node_names); int * parent_recombinations = NULL; fill_in_recombinations_with_gaps(root, parent_recombinations, 0, 0,0,root->block_coordinates,length_of_original_genome,snp_locations,number_of_snps);