[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:
Neil Fortner 2010-04-15 14:20:57 -05:00
parent 13a6885db3
commit 227a351e47

View File

@ -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;