diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2009-01-14 15:30:51 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2009-01-14 15:30:51 (GMT) |
commit | 6564dbcfaa09da479cc5e393693799e329fc1330 (patch) | |
tree | 820621ac55441e10978dca5aa155e170ccebc6b4 /release_docs | |
parent | a365f0e6aabfa6a13b008e0263e6a2d6c86d5d7e (diff) | |
download | hdf5-6564dbcfaa09da479cc5e393693799e329fc1330.zip hdf5-6564dbcfaa09da479cc5e393693799e329fc1330.tar.gz hdf5-6564dbcfaa09da479cc5e393693799e329fc1330.tar.bz2 |
[svn-r16308] Purpose: Fix problem with H5Tpack
Description:
If a compound type was packed except for some extra space at the end, H5Tpack
would not modify the type and the extra space would remain. Changed
H5T_is_packed to fix this behaviour.
Tested: jam, smirom (h5committest - linew down)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 51320d0..45457d8 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -141,40 +141,42 @@ Bug Fixes since HDF5-1.8.0 release Library ------- + - Fixed a bug where H5Tpack wouldn't remove trailing space from an + otherwise packed compound type. (NAF - 2009/01/14) - Fixed up some old v2 btree assertions that get run in debug mode that were previously failing on compilation, and removed some of the more heavily outdated and non-rewritable ones. (MAM - 2008/12/15) - Fixed a bug that could cause problems when "automatically" unmounting - multiple files. (NAF - 2008/11/17) + multiple files. (NAF - 2008/11/17) - H5Ovisit and H5Ovisit_by_name will now properly terminate when the callback function returns a positive value on the starting object. (NAF - 2008/11/03) - Fixed an error where a null message could be created that was larger - than could be written to the file. (NAF - 2008/10/23) + than could be written to the file. (NAF - 2008/10/23) - Corrected error with family/split/multi VFD not updating driver info when "latest" version of the file format used. (QAK - 2008/10/14) - Corrected alignment+threshold errors to work correctly when metadata aggregation is enabled. (QAK - 2008/10/06) - Changed H5Fget_obj_count and H5Fget_obj_ids to ignore objects registered - by the library for internal library use. (NAF - 2008/10/06) + by the library for internal library use. (NAF - 2008/10/06) - Fixed potential memory leak during compound conversion. (NAF - 2008/10/06) - Changed the return value of H5Fget_obj_count from INT to SSIZE_T. Also changed the return value of H5Fget_obj_ids from HERR_T to SSIZE_T and the type of the parameter MAX_OBJS from INT to SIZE_T. (SLU - 2008/09/26) - Fixed an issue that could cause data to be improperly overwritten - during compound type conversion. (NAF - 2008/09/19) + during compound type conversion. (NAF - 2008/09/19) - Fixed pointer alignment violations that could occur during vlen - conversion. (NAF - 2008/09/16) + conversion. (NAF - 2008/09/16) - Fixed problem where library could cause a segmentation fault when an invalid location ID was given to H5Giterate(). (QAK - 2008/08/19) - Fixed improper shutdown when objects have reference count > 1. The library now tracks reference count due to the application separately - from that due to internal library routines. (NAF - 2008/08/19) + from that due to internal library routines. (NAF - 2008/08/19) - Fixed assertion failure caused by incorrect array datatype version. (NAF - 2008/08/08) - Fixed an issue where mount point traversal would fail when using - multiple handles for the child. (NAF - 2008/08/07) + multiple handles for the child. (NAF - 2008/08/07) - Fixed an issue where mount points were inaccessible when using multiple file handles for the parent. The mount table is now in the shared file structure (the parent pointer is still in the top structure). |