From: Rich Felker <dalias@aerifal.cx>
Date: Mon, 22 Jun 2015 20:33:28 +0000 (+0000)
Subject: fix regression/typo that disabled __simple_malloc when calloc is used
X-Git-Tag: v1.1.11~29
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=153e952e1a688859d7095345b17e6c1df74a295c;p=musl

fix regression/typo that disabled __simple_malloc when calloc is used

commit ba819787ee93ceae94efd274f7849e317c1bff58 introduced this
regression. since the __malloc0 weak alias was not properly provided
by __simple_malloc, use of calloc forced the full malloc to be linked.
---

diff --git a/src/malloc/lite_malloc.c b/src/malloc/lite_malloc.c
index b09f30b0..09ac5755 100644
--- a/src/malloc/lite_malloc.c
+++ b/src/malloc/lite_malloc.c
@@ -47,4 +47,4 @@ void *__simple_malloc(size_t n)
 }
 
 weak_alias(__simple_malloc, malloc);
-weak_alias(__simple_malloc, malloc0);
+weak_alias(__simple_malloc, __malloc0);