From f8028afeaffd727bc335681491b25a6f8fe51f4d Mon Sep 17 00:00:00 2001 From: Mingxiang Lu Date: Sun, 29 Sep 2024 20:26:43 +0800 Subject: fix TLS memory leak with dlopen Signed-off-by: Mingxiang Lu Signed-off-by: Waldemar Brodkorb --- libpthread/nptl/allocatestack.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libpthread/nptl/allocatestack.c') diff --git a/libpthread/nptl/allocatestack.c b/libpthread/nptl/allocatestack.c index 7ef884543..941ef22f0 100644 --- a/libpthread/nptl/allocatestack.c +++ b/libpthread/nptl/allocatestack.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include @@ -241,6 +242,10 @@ get_cached_stack (size_t *sizep, void **memp) /* Clear the DTV. */ dtv_t *dtv = GET_DTV (TLS_TPADJ (result)); + for (size_t cnt = 0; cnt < dtv[-1].counter; ++cnt) + if (! dtv[1 + cnt].pointer.is_static + && dtv[1 + cnt].pointer.val != TLS_DTV_UNALLOCATED) + free (dtv[1 + cnt].pointer.val); memset (dtv, '\0', (dtv[-1].counter + 1) * sizeof (dtv_t)); /* Re-initialize the TLS. */ -- cgit v1.2.3