diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2008-03-06 17:14:21 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2008-03-06 17:14:21 (GMT) |
commit | 50be73bf3b77ea12b22047ffbede2e1ff8e1ed42 (patch) | |
tree | 027593975c49b2b2b7dda640e88fa5f7880adbd1 /src/H5HFpkg.h | |
parent | 21ddbe660998f1ad04eebd26f0547c3d6cb55dd8 (diff) | |
download | hdf5-50be73bf3b77ea12b22047ffbede2e1ff8e1ed42.zip hdf5-50be73bf3b77ea12b22047ffbede2e1ff8e1ed42.tar.gz hdf5-50be73bf3b77ea12b22047ffbede2e1ff8e1ed42.tar.bz2 |
[svn-r14709] Fixed the assert() failures (development mode) from Wed. daily tests:
Add 2 more parameters to H5HF_man_iblock_size() (parent iblock and parent entry)
for passing onto H5HF_iblock_man_iblock_protect().
This bug was there before but was revealed now by exercising the recursive part of the code from the new
"h5stat_newgrat.h5".
Tested on kagiso, smirom and linew with --disable-production.
Diffstat (limited to 'src/H5HFpkg.h')
-rw-r--r-- | src/H5HFpkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5HFpkg.h b/src/H5HFpkg.h index 702ce08..fd332e5 100644 --- a/src/H5HFpkg.h +++ b/src/H5HFpkg.h @@ -601,7 +601,7 @@ H5_DLL herr_t H5HF_man_iblock_delete(H5HF_hdr_t *hdr, hid_t dxpl_id, haddr_t iblock_addr, unsigned iblock_nrows, H5HF_indirect_t *par_iblock, unsigned par_entry); H5_DLL herr_t H5HF_man_iblock_size(H5F_t *f, hid_t dxpl_id, H5HF_hdr_t *hdr, - haddr_t iblock_addr, unsigned nrows, hsize_t *heap_size/*out*/); + haddr_t iblock_addr, unsigned nrows, H5HF_indirect_t *par_iblock, unsigned par_entry, hsize_t *heap_size/*out*/); /* Direct block routines */ H5_DLL herr_t H5HF_man_dblock_new(H5HF_hdr_t *fh, hid_t dxpl_id, size_t request, |