Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-gnome
Path: blob/main/biology/fasttree/files/patch-FastTree-2.1.10.c
16125 views
1
--- FastTree-2.1.10.c.orig 2017-12-04 15:09:11 UTC
2
+++ FastTree-2.1.10.c
3
@@ -8759,7 +8759,7 @@ double pnorm(double x)
4
5
void *mymalloc(size_t sz) {
6
if (sz == 0) return(NULL);
7
- void *new = malloc(sz);
8
+ void *new = aligned_alloc(16, sz);
9
if (new == NULL) {
10
fprintf(stderr, "Out of memory\n");
11
exit(1);
12
13