mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r5723]
Purpose: Fix bug Description: In function H5HG_remove, heap object header wasn't included for size. Solution: Added heap object header in. Platforms tested: Linux 2.2(eirene).
This commit is contained in:
parent
03ccb39fa9
commit
d059a941bc
@ -858,9 +858,8 @@ H5HG_remove (H5F_t *f, H5HG_t *hobj)
|
||||
assert (hobj->idx>0 && hobj->idx<heap->nalloc);
|
||||
assert (heap->obj[hobj->idx].begin);
|
||||
obj_start = heap->obj[hobj->idx].begin;
|
||||
need = H5HG_ALIGN(heap->obj[hobj->idx].size); /* should this include the
|
||||
* object header size? -rpm
|
||||
*/
|
||||
/* Include object header size */
|
||||
need = H5HG_ALIGN(heap->obj[hobj->idx].size)+H5HG_SIZEOF_OBJHDR(f);
|
||||
|
||||
/* Move the new free space to the end of the heap */
|
||||
for (u=0; u<heap->nalloc; u++) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user