Skip to content

Commit

Permalink
Switch off memory freeing
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjcroucher committed Apr 19, 2024
1 parent 227d4fd commit 4df0f10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Newickform.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4df0f10

Please sign in to comment.