summaryrefslogtreecommitdiff
path: root/malloc
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-12-18 07:37:17 +0000
committerUlrich Drepper <drepper@redhat.com>2002-12-18 07:37:17 +0000
commit6ed5da8f484ccafb6e1b131514d8c01efc5affbc (patch)
tree2b0f7fea5ecb0305656302a460068b78272cf659 /malloc
parentff4056c02c4899277a285cb2720531bc64a06c0e (diff)
Update.
* malloc/malloc.c (mALLOPt): Make sure malloc is initialized.
Diffstat (limited to 'malloc')
-rw-r--r--malloc/malloc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c
index 36a244dad7..da834d2663 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -5146,6 +5146,8 @@ int mALLOPt(int param_number, int value)
int mALLOPt(param_number, value) int param_number; int value;
#endif
{
+ if(__malloc_initialized < 0)
+ ptmalloc_init ();
mstate av = &main_arena;
int res = 1;