summaryrefslogtreecommitdiffstats
path: root/release_docs/RELEASE.txt
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2023-03-24 14:53:46 (GMT)
committerGitHub <noreply@github.com>2023-03-24 14:53:46 (GMT)
commit3fa338013907494ccfe93b8e22d89185a39067ff (patch)
tree7d294244a6eddcbb8018c8ebe9986817f525eb65 /release_docs/RELEASE.txt
parent7b4387df4322c3a953f5747c3ffbf907875ca815 (diff)
downloadhdf5-3fa338013907494ccfe93b8e22d89185a39067ff.zip
hdf5-3fa338013907494ccfe93b8e22d89185a39067ff.tar.gz
hdf5-3fa338013907494ccfe93b8e22d89185a39067ff.tar.bz2
Fix a memory corruption issue in H5S__point_project_simple (#2627)
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 ab10311..d518f2f 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -240,6 +240,20 @@ Bug Fixes since HDF5-1.10.9 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)
+
- Fix CVE-2021-37501 / GHSA-rfgw-5vq3-wrjf
Check for overflow when calculating on-disk attribute data size.