summaryrefslogtreecommitdiffstats
path: root/release_docs/RELEASE.txt
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2018-03-21 19:06:14 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2018-03-21 19:06:14 (GMT)
commiteb69e5b68395932eebd4e836c26c798d50e733bc (patch)
tree3eb6160b9ddc0054d19f07574d6bc2e502dc6295 /release_docs/RELEASE.txt
parent667308c80d2b750aaa47c3555fc0c478b8dd4f3c (diff)
parent519a8fb46132c20bb00bddba64fe29514bb2beb4 (diff)
downloadhdf5-eb69e5b68395932eebd4e836c26c798d50e733bc.zip
hdf5-eb69e5b68395932eebd4e836c26c798d50e733bc.tar.gz
hdf5-eb69e5b68395932eebd4e836c26c798d50e733bc.tar.bz2
Merge remote-tracking branch 'origin/develop' into merge_func_enter_vol
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r--release_docs/RELEASE.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index c978942..4fa3af2 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -319,6 +319,22 @@ Bug Fixes since HDF5-1.10.1 release
Library
-------
+ - The data read after a direct chunk write to a chunked dataset
+ was incorrect.
+
+ The problem was due to the passing of a null dataset pointer to
+ the insert callback for the chunk index in the routine
+ H5D__chunk_direct_write() in H5Dchunk.c
+ The dataset was a single-chunked dataset which will use the
+ single chunk index when latest format was enabled on file creation.
+ The single chunk index was the only index that used this pointer
+ in the insert callback.
+
+ Pass the dataset pointer to the insert callback for the chunk
+ index in H5D__chunk_direct_write().
+
+ (VC - 2018/03/20, HDFFV-10425)
+
- Add public routine H5DOread_chunk to the high-level C library
As we have H5DOwrite_chunk() to write an entire chunk to the file