diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2010-09-15 15:29:38 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2010-09-15 15:29:38 (GMT) |
commit | cb9a804f82bfe32451b4033d8a421efc60e5521e (patch) | |
tree | 333cc7049904dbf78df9d1c9ec146022f4e32eb3 /release_docs | |
parent | 96c26d2b17f28af6a25a7cd61449b1bac06b996d (diff) | |
download | hdf5-cb9a804f82bfe32451b4033d8a421efc60e5521e.zip hdf5-cb9a804f82bfe32451b4033d8a421efc60e5521e.tar.gz hdf5-cb9a804f82bfe32451b4033d8a421efc60e5521e.tar.bz2 |
[svn-r19386] Purpose: Fix assertion failure caused by fractal heap header file pointer
Description:
The fractal heap header structure keeps a pointer to the file associated with
it. However, it is possible for that file pointer to be closed while the
header is still in cache (through the shared file pointer). Previously, the
header's file pointer was not updated and subsequently pointed to an invalid
file structure. Modified fractal heap code to update the file pointer every
time the header is accessed.
Tested: jam, linew, amani (h5committest)
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 ef5ad26..87f6e40 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -244,6 +244,9 @@ Bug Fixes since HDF5-1.8.0 release Library ------- + - Fixed a bug that could occur when getting information for a new-style + group that was previously opened through a file handle that was + later closed. (NAF - 2010/09/15) - Added define check in H5public.h if stdint.h is supported by the C++ compiler. This define is only available on Windows with VS2010 and using CMake to build the library. (ADB - 2010/09/13 - Bug 1938) |