fix a crash in the rb_bh_gc code

from libratbox svn r25871 (androsyn)
This commit is contained in:
Jilles Tjoelker 2008-08-12 22:37:29 +02:00
parent 97a6160b45
commit 74e0c6e660
1 changed files with 1 additions and 1 deletions

View File

@ -567,7 +567,7 @@ rb_bh_gc(rb_bh * bh)
offset = (uintptr_t)b->elems;
for (i = 0; i < bh->elemsPerBlock; i++, offset += (uintptr_t)bh->elemSize)
{
rb_dlinkDelete(((rb_dlink_node *)(offset + offset_pad)), &bh->free_list);
rb_dlinkDelete(((rb_dlink_node *)offset), &bh->free_list);
}
rb_dlinkDelete(&b->node, &bh->block_list);
free_block(b->elems, b->alloc_size);