summaryrefslogtreecommitdiffstats
path: root/src/H5HFstat.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2008-03-06 17:16:17 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2008-03-06 17:16:17 (GMT)
commitda9a26d9a50defeb0631d29e1fc487c791635c58 (patch)
tree63c09ff132ff94e527c444ca714c89abc09b52fe /src/H5HFstat.c
parent87be7927dd360613f5d884859d03bcb65095a5ce (diff)
downloadhdf5-da9a26d9a50defeb0631d29e1fc487c791635c58.zip
hdf5-da9a26d9a50defeb0631d29e1fc487c791635c58.tar.gz
hdf5-da9a26d9a50defeb0631d29e1fc487c791635c58.tar.bz2
[svn-r14710] Fixed the assert() failures (development mode) from Wed. daily tests:
Added 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. -This line, and those below, will be ignored-- M src/H5HFiblock.c M src/H5HFpkg.h M src/H5HFstat.c
Diffstat (limited to 'src/H5HFstat.c')
-rw-r--r--src/H5HFstat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5HFstat.c b/src/H5HFstat.c
index 1311e03..7c28505 100644
--- a/src/H5HFstat.c
+++ b/src/H5HFstat.c
@@ -148,7 +148,7 @@ H5HF_size(const H5HF_t *fh, hid_t dxpl_id, hsize_t *heap_size)
/* Check for indirect blocks for managed objects */
if(H5F_addr_defined(hdr->man_dtable.table_addr) && hdr->man_dtable.curr_root_rows != 0)
- if(H5HF_man_iblock_size(hdr->f, dxpl_id, hdr, hdr->man_dtable.table_addr, hdr->man_dtable.curr_root_rows, heap_size) < 0)
+ if(H5HF_man_iblock_size(hdr->f, dxpl_id, hdr, hdr->man_dtable.table_addr, hdr->man_dtable.curr_root_rows, NULL, 0, heap_size) < 0)
HGOTO_ERROR(H5E_HEAP, H5E_CANTGET, FAIL, "unable to get fractal heap storage info for indirect block")
/* Get B-tree storage for huge objects in fractal heap */