From 1e4204d522670a1d8b8ab85f1cfefa960547e8af Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 9 Dec 2020 17:11:05 -0500 Subject: use libc-internal malloc for newlocale/freelocale this is necessary for MT-fork correctness now that the code runs under locale lock. it would not be hard to avoid, but __get_locale is already using libc-internal malloc anyway. this can be reconsidered during locale overhaul later if needed. --- src/locale/freelocale.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/locale/freelocale.c') diff --git a/src/locale/freelocale.c b/src/locale/freelocale.c index 802b8bfe..385d1206 100644 --- a/src/locale/freelocale.c +++ b/src/locale/freelocale.c @@ -1,6 +1,11 @@ #include #include "locale_impl.h" +#define malloc undef +#define calloc undef +#define realloc undef +#define free __libc_free + void freelocale(locale_t l) { if (__loc_is_allocated(l)) free(l); -- cgit v1.2.1