diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-08-27 04:38:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-08-27 04:38:05 +0000 |
commit | 41999a1a37a1c00864c7e390ac6c9f29ec1ae27c (patch) | |
tree | 5360f88142a35949927e64a80c537e0cee5da741 /ChangeLog | |
parent | 7166374764ceb7eb568c63e736f099b812f29a54 (diff) | |
download | glibc-41999a1a37a1c00864c7e390ac6c9f29ec1ae27c.tar.gz glibc-41999a1a37a1c00864c7e390ac6c9f29ec1ae27c.tar.xz glibc-41999a1a37a1c00864c7e390ac6c9f29ec1ae27c.zip |
* malloc/malloc.c (bin_at): Rewrite to be more clear and to not
waste bins[0..1]. (malloc_state): Reduce bins size by 2. (_int_malloc): Fix test for large enough buffer for early termination. When no unsorted block matches perfectly and an exiting block has to be split, use full list insert and not shortcut which assumes the list is empty.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 7680f124a0..61a0696850 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ 2006-08-26 Ulrich Drepper <drepper@redhat.com> + * malloc/malloc.c (bin_at): Rewrite to be more clear and to not + waste bins[0..1]. + (malloc_state): Reduce bins size by 2. + (_int_malloc): Fix test for large enough buffer for early termination. + When no unsorted block matches perfectly and an exiting block has + to be split, use full list insert and not shortcut which assumes + the list is empty. + * locale/programs/ld-ctype.c (ctype_read): Better patch for read failure. |