[COMMITTED] malloc: Drop __malloc_initialized from Versions

Message ID 20210622144408.812371-1-siddhesh@sourceware.org
State Committed
Headers
Series [COMMITTED] malloc: Drop __malloc_initialized from Versions |

Commit Message

Siddhesh Poyarekar June 22, 2021, 2:44 p.m. UTC
  __malloc_initialized is mentioned in Versions when it is actually an
internal symbol.  The resultant binaries are identical.
---
 malloc/Versions | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Florian Weimer June 22, 2021, 4:53 p.m. UTC | #1
* Siddhesh Poyarekar via Libc-alpha:

> __malloc_initialized is mentioned in Versions when it is actually an
> internal symbol.  The resultant binaries are identical.

Okay.  Thanks.

Florian
  

Patch

diff --git a/malloc/Versions b/malloc/Versions
index 6693c46ee2..62e4698a08 100644
--- a/malloc/Versions
+++ b/malloc/Versions
@@ -9,7 +9,7 @@  libc {
     __libc_valloc;
     __malloc_initialize_hook; __free_hook; __malloc_hook; __realloc_hook;
     __memalign_hook; __after_morecore_hook;
-    __malloc_initialized; __default_morecore; __morecore;
+    __default_morecore; __morecore;
 
     # functions used in inline functions or macros
     _obstack_allocated_p; _obstack_begin; _obstack_begin_1;