summaryrefslogtreecommitdiff
path: root/libc/stdlib/malloc/heap_free.c
diff options
context:
space:
mode:
authorMiles Bader <miles@lsi.nec.co.jp>2002-07-25 07:31:09 +0000
committerMiles Bader <miles@lsi.nec.co.jp>2002-07-25 07:31:09 +0000
commitc5568de190ec2806ce36e063865bfee66d30d032 (patch)
tree319336d7c9fa8da24fbe33c01b103d8ba4de937b /libc/stdlib/malloc/heap_free.c
parent5446f4e74f052ca4fea226a8fdb89502d6520a32 (diff)
Size tweaks.
Diffstat (limited to 'libc/stdlib/malloc/heap_free.c')
-rw-r--r--libc/stdlib/malloc/heap_free.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libc/stdlib/malloc/heap_free.c b/libc/stdlib/malloc/heap_free.c
index 6084b43c3..272327260 100644
--- a/libc/stdlib/malloc/heap_free.c
+++ b/libc/stdlib/malloc/heap_free.c
@@ -31,13 +31,17 @@ __heap_free (struct heap *heap, void *mem, size_t size)
size_t fa_size = fa->size;
void *fa_mem = HEAP_FREE_AREA_START (fa);
- if (end == fa_mem)
+ if (fa_mem > end)
+ /* We've reached the right spot in the free-list without finding an
+ adjacent free-area, so continue below to add a new free area. */
+ break;
+ else if (fa_mem == end)
/* FA is just after MEM, grow down to encompass it. */
{
fa_size += size;
/* See if FA can now be merged with its predecessor. */
- if (prev_fa && fa_mem - size == HEAP_FREE_AREA_END (prev_fa))
+ if (prev_fa && mem == HEAP_FREE_AREA_END (prev_fa))
/* Yup; merge PREV_FA's info into FA. */
{
fa_size += prev_fa->size;
@@ -56,7 +60,7 @@ __heap_free (struct heap *heap, void *mem, size_t size)
fa_size += size;
/* See if FA can now be merged with its successor. */
- if (next_fa && mem + size == HEAP_FREE_AREA_START (next_fa))
+ if (next_fa && end == HEAP_FREE_AREA_START (next_fa))
/* Yup; merge FA's info into NEXT_FA. */
{
fa_size += next_fa->size;
@@ -78,10 +82,6 @@ __heap_free (struct heap *heap, void *mem, size_t size)
goto done;
}
- else if (fa_mem > mem)
- /* We've reached the right spot in the free-list without finding an
- adjacent free-area, so continue below to add a new free area. */
- break;
}
/* Make MEM into a new free-list entry. */