diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-09-10 18:33:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-09-10 18:33:48 (GMT) |
commit | 9c31ce9a7b2b98416c0bfd90bccc277693341083 (patch) | |
tree | 054188ce5f221a96f23af38d098804a48a48e7ea /release_docs | |
parent | 0282f2219bdeaf8b7bcd9141b20e4bf02d3a5301 (diff) | |
download | hdf5-9c31ce9a7b2b98416c0bfd90bccc277693341083.zip hdf5-9c31ce9a7b2b98416c0bfd90bccc277693341083.tar.gz hdf5-9c31ce9a7b2b98416c0bfd90bccc277693341083.tar.bz2 |
[svn-r7458] Purpose:
Bug fix.
Description:
Correct bug where a file opened twice, once with read-write permission
and once with read-only permission would cause closing the file with the
read-only file ID to fail because it was trying to flush information out
of the file.
Solution:
Check the permissions on file IDs that are being closed and only flush
when the particular file ID was opened with write permission.
Platforms tested:
FreeBSD 4.9 (sleipnir)
too small to need 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 12f3900..d688f91 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -56,6 +56,9 @@ Bug Fixes since HDF5-1.6.0 release Library ------- + - Corrected bug when opening a file twice with read-only permission + for one open and then closing the read-only access file ID would + generate an error. QAK - 2003/09/10 - Corrected bug in repeated calls to H5Pget_access_plist() which would incorrectly manage reference counts of internal information and eventually blow up. QAK - 2003/09/02 |