summaryrefslogtreecommitdiffstats
path: root/release_docs/RELEASE.txt
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2023-03-24 03:55:34 (GMT)
committerGitHub <noreply@github.com>2023-03-24 03:55:34 (GMT)
commit31c26e72c524c98c3f2e84f1cf34af150aefa9bb (patch)
tree939c27f2bcb5067ed61a5cb1a7d177d6374514f2 /release_docs/RELEASE.txt
parent7fd9a4435f80fad41992f1e71b94c4ff2be887ba (diff)
downloadhdf5-31c26e72c524c98c3f2e84f1cf34af150aefa9bb.zip
hdf5-31c26e72c524c98c3f2e84f1cf34af150aefa9bb.tar.gz
hdf5-31c26e72c524c98c3f2e84f1cf34af150aefa9bb.tar.bz2
Fix a memory corruption issue in H5S__point_project_simple (#2626)
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r--release_docs/RELEASE.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index b4d8cb2..8249a8c 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -141,6 +141,20 @@ Bug Fixes since HDF5-1.13.3 release
===================================
Library
-------
+ - Fixed a memory corruption issue that can occur when reading
+ from a dataset using a hyperslab selection in the file
+ dataspace and a point selection in the memory dataspace
+
+ When reading from a dataset using a hyperslab selection in
+ the dataset's file dataspace and a point selection in the
+ dataset's memory dataspace where the file dataspace's "rank"
+ is greater than the memory dataspace's "rank", memory corruption
+ could occur due to an incorrect number of selection points
+ being copied when projecting the point selection onto the
+ hyperslab selection's dataspace.
+
+ (JTH - 2023/03/23)
+
- Fixed issues in the Subfiling VFD when using the SELECT_IOC_EVERY_NTH_RANK
or SELECT_IOC_TOTAL I/O concentrator selection strategies