ports/biology/fasttree/files/patch-FastTree-2.1.10.c
Jason W. Bacon 12b5c3c8f1 biology/fasttree: Update to 2.1.11
Add -trans option for amino acid alignments
Changes: https://microbesonline.org/fasttree/ChangeLog

PR:             283035
Reported by:    alster@vinterdalen.se
2024-12-03 08:55:06 -06:00

11 lines
321 B
C

--- FastTree-2.1.11.c.orig 2017-12-04 15:09:11 UTC
+++ FastTree-2.1.11.c
@@ -8759,7 +8759,7 @@ double pnorm(double x)
void *mymalloc(size_t sz) {
if (sz == 0) return(NULL);
- void *new = malloc(sz);
+ void *new = aligned_alloc(16, sz);
if (new == NULL) {
fprintf(stderr, "Out of memory\n");
exit(1);