diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-04 21:19:34 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-04 21:19:34 (GMT) |
commit | 0bd98ecc77ad50a65f43395f383838d7a68071fe (patch) | |
tree | ff678fa3d83a3b7c9b82d0c9c2d2b982fa4dd0c6 /src/H5B.c | |
parent | a090a0efa9147a741ec5628f7def7685a2148b81 (diff) | |
download | hdf5-0bd98ecc77ad50a65f43395f383838d7a68071fe.zip hdf5-0bd98ecc77ad50a65f43395f383838d7a68071fe.tar.gz hdf5-0bd98ecc77ad50a65f43395f383838d7a68071fe.tar.bz2 |
[svn-r10146] 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
@@ -531,6 +531,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); |