diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-02-09 15:54:44 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-02-09 15:54:44 (GMT) |
commit | 86c18b7e4f2fd322b3571a9050c4eb051027391a (patch) | |
tree | 314568f5c303132a82605ade164897bc0eb88f60 /release_docs | |
parent | e1ef99ed1dbbaa57428cc8cbc8513e6adf6ae5c6 (diff) | |
download | hdf5-86c18b7e4f2fd322b3571a9050c4eb051027391a.zip hdf5-86c18b7e4f2fd322b3571a9050c4eb051027391a.tar.gz hdf5-86c18b7e4f2fd322b3571a9050c4eb051027391a.tar.bz2 |
[svn-r9966] Purpose: Bug fix
Description: H5Tget_member_value didn't return correct value if called after
H5Tenum_valueof. It's because there's a sorting on the members of enum type in
H5Tenum_valueof which changed the order of members.
Solution: Made a copy of original type and do sorting on it to protect the
original order.
Platforms tested: fuss; tested v1.6 with h5committest
Misc. update: RELEASE.txt
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 511cf3a..c352c7c 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -201,6 +201,9 @@ Bug Fixes since HDF5-1.6.0 release Library ------- + - H5Tget_member_value calls for enum datatype didn't return correct + value if H5Tenum_valueof was called first. It's fixed. SLU - + 2005/02/08 - For variable-length string, H5Tget_class returned H5T_STRING as its class. But H5Tdetect_class and H5Tget_member_class considered it as H5T_VLEN. This is fixed to let all these 3 functions treat it |