diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2009-02-12 19:06:37 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2009-02-12 19:06:37 (GMT) |
commit | 02fd491bf01ff4c54980a4f1ad3fd822e6998215 (patch) | |
tree | c27bbaee35bb4072ede8915bf43b1037a924ae55 /release_docs | |
parent | 3c483bd0782a3f9809d782a29a01bd1013f651f4 (diff) | |
download | hdf5-02fd491bf01ff4c54980a4f1ad3fd822e6998215.zip hdf5-02fd491bf01ff4c54980a4f1ad3fd822e6998215.tar.gz hdf5-02fd491bf01ff4c54980a4f1ad3fd822e6998215.tar.bz2 |
[svn-r16477] Purpose: Fix problem with opening an attribute multiple times through multiple
file handles.
Description:
An attribute's "oloc" field which specifies the file it resides in was located
in the attribute's "shared" structure. So when an attribute was opened multiple
times all of the handles for that attribute pointed to the same file id, even if
different file id's were used to open the different handles for the attribute.
The "oloc" has been moved to the top level H5A_t struct.
Tested: jam, smirom (h5committest)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 519608f..8eda9ea 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -142,6 +142,8 @@ Bug Fixes since HDF5-1.8.0 release Library ------- + - Fixed an assertion failure caused by opening an attribute multiple times + through multiple file handles. (NAF - 2009/02/06) - Fixed a problem that could prevent the user from adding attributes (or any object header message) in some circumstances. (NAF - 2009/02/12) - Fixed a bug that could cause problems when an attribute was added to a |