diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-08-31 04:56:07 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-08-31 04:56:07 -0700 |
commit | b5c03e105cb445a7dc08289e7e6751434c3262ce (patch) | |
tree | 928b55a8dc91fb8a1a08f621aebd48345e242919 | |
parent | 72f9026327c109c3d72b4f17ee0afc8b4e2d6f00 (diff) | |
download | glibc-b5c03e105cb445a7dc08289e7e6751434c3262ce.tar.gz glibc-b5c03e105cb445a7dc08289e7e6751434c3262ce.tar.xz glibc-b5c03e105cb445a7dc08289e7e6751434c3262ce.zip |
Fix problems with memory allocation in assert.
In case the allocator is corrupted and an assert triggers, we shouldn't allocate any more memory. Use a private assert definition which doesn't use malloc.
-rw-r--r-- | ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index b52cb81b60..2f6de8b9d7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-08-31 Ulrich Drepper <drepper@redhat.com> + + [BZ #10560] + * malloc/malloc.c: Add local assert definition to avoid problems with + memory allocation in the real one. + 2009-08-27 H.J. Lu <hongjiu.lu@intel.com> * sysdeps/i386/i686/multiarch/init-arch.c (ENABLE_SSSE3_ON_ATOM): |