diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-18 07:37:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-18 07:37:17 +0000 |
commit | 6ed5da8f484ccafb6e1b131514d8c01efc5affbc (patch) | |
tree | 2b0f7fea5ecb0305656302a460068b78272cf659 /malloc | |
parent | ff4056c02c4899277a285cb2720531bc64a06c0e (diff) | |
download | glibc-6ed5da8f484ccafb6e1b131514d8c01efc5affbc.zip glibc-6ed5da8f484ccafb6e1b131514d8c01efc5affbc.tar.gz glibc-6ed5da8f484ccafb6e1b131514d8c01efc5affbc.tar.bz2 |
Update.
* malloc/malloc.c (mALLOPt): Make sure malloc is initialized.
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/malloc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/malloc/malloc.c b/malloc/malloc.c index 36a244d..da834d2 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; |