diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-04 21:19:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-04 21:19:28 (GMT) |
commit | fc78e01d1534d26d1badc77286e185059e85fba9 (patch) | |
tree | c320911ec5feb1bc8d8ee0a05de05f406d3ad16c /src/H5B.c | |
parent | afdf7fcfa6adbadf46f71ccdea52bef769d5285d (diff) | |
download | hdf5-fc78e01d1534d26d1badc77286e185059e85fba9.zip hdf5-fc78e01d1534d26d1badc77286e185059e85fba9.tar.gz hdf5-fc78e01d1534d26d1badc77286e185059e85fba9.tar.bz2 |
[svn-r10145] Purpose:
Bug fix
Description:
Add some "safety net" sort of assertions and sanity checks contributed by
user.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5B.c')
-rw-r--r-- | src/H5B.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -532,6 +532,7 @@ H5B_dest(H5F_t UNUSED *f, H5B_t *bt) * Check arguments. */ assert(bt); + assert(bt->rc_shared); H5FL_SEQ_FREE(haddr_t,bt->child); H5FL_BLK_FREE(native_block,bt->native); |