summaryrefslogtreecommitdiffstats
path: root/release_docs/RELEASE.txt
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2018-03-21 21:09:22 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2018-03-21 21:09:22 (GMT)
commitaac6eed7ee415f1672ee0ad2669b1151f3cb2718 (patch)
tree56317cc67751c298cf873b4f4ae7ad82ae6ae6e7 /release_docs/RELEASE.txt
parent0bcaa290e07154cc0376b5084c4336e162d777ef (diff)
parente79f9a73feb1b18c52a1608336aff612d2732d5b (diff)
downloadhdf5-aac6eed7ee415f1672ee0ad2669b1151f3cb2718.zip
hdf5-aac6eed7ee415f1672ee0ad2669b1151f3cb2718.tar.gz
hdf5-aac6eed7ee415f1672ee0ad2669b1151f3cb2718.tar.bz2
Merge pull request #990 in HDFFV/hdf5 from develop to hdf5_1_10
* commit 'e79f9a73feb1b18c52a1608336aff612d2732d5b': Couple fixes to the test routine for HDFFV-10425. Add test and release info for the fix to HDFFV-10425 test failure with H5DOwrite_chunk.
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 c37611c..10c2978 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -394,6 +394,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