diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-09-10 18:32:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-09-10 18:32:28 (GMT) |
commit | 6a9188f0cb0ab63e858fee73c5261bbab4376c47 (patch) | |
tree | 7385cba61a82d379d320f7941ec35776ef1b40ec /release_docs | |
parent | 6d928cf05ef860086825665cbfff18c6d1c15b3c (diff) | |
download | hdf5-6a9188f0cb0ab63e858fee73c5261bbab4376c47.zip hdf5-6a9188f0cb0ab63e858fee73c5261bbab4376c47.tar.gz hdf5-6a9188f0cb0ab63e858fee73c5261bbab4376c47.tar.bz2 |
[svn-r7457] 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
Misc. update:
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 46af0d1..92997b7 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -74,6 +74,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 |