diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2008-10-07 03:47:56 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2008-10-07 03:47:56 (GMT) |
commit | a858608a0aa4ff6b23e35e210da3e7b2d461df51 (patch) | |
tree | b128cbc269926fb7b133476ef08a6a7f2d494b15 /src/H5Dint.c | |
parent | d7437bc5b171fef226813a576dea088d00f67b9a (diff) | |
download | hdf5-a858608a0aa4ff6b23e35e210da3e7b2d461df51.zip hdf5-a858608a0aa4ff6b23e35e210da3e7b2d461df51.tar.gz hdf5-a858608a0aa4ff6b23e35e210da3e7b2d461df51.tar.bz2 |
[svn-r15797] Purpose: Close bug #1322
Description: Fixes a possible datatype id leak that could occur during compound
datatype conversion, or more precisely, when unregistering those conversions.
Datatype ids normally registered by the library are no longer visible to the
application via H5Fget_obj_ids and H5Fget_obj_count.
Tested: kagiso, linew, smirom (h5committest)
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r-- | src/H5Dint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c index 7a2dcc9..bab3038 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -2570,7 +2570,7 @@ H5D_flush(const H5F_t *f, hid_t dxpl_id, unsigned flags) udata.flags = flags; /* Iterate over all the open datasets */ - H5I_search(H5I_DATASET, H5D_flush_cb, &udata); + H5I_search(H5I_DATASET, H5D_flush_cb, &udata, FALSE); done: FUNC_LEAVE_NOAPI(ret_value) |