mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r18567] Purpose: Fix error in call to memmove() in H5B_remove_helper. This error was
only reproducible through the use of electric fence. Tested: Fedora (too minor for h5committest)
This commit is contained in:
parent
13a6885db3
commit
227a351e47
@ -1511,7 +1511,7 @@ H5B_remove_helper(H5F_t *f, hid_t dxpl_id, haddr_t addr, const H5B_class_t *type
|
||||
|
||||
HDmemmove(bt->child + idx,
|
||||
bt->child + idx + 1,
|
||||
(bt->nchildren - idx) * sizeof(haddr_t));
|
||||
(bt->nchildren - 1 - idx) * sizeof(haddr_t));
|
||||
|
||||
bt->nchildren -= 1;
|
||||
bt_flags |= H5AC__DIRTIED_FLAG;
|
||||
|
Loading…
x
Reference in New Issue
Block a user