summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorjhendersonHDF <jhenderson@hdfgroup.org>2022-08-16 21:09:24 (GMT)
committerGitHub <noreply@github.com>2022-08-16 21:09:24 (GMT)
commit9c9f70ed695a0022a55bf53d085b7540ae5b5281 (patch)
tree4d3105ac30f177afcbcfa9a7411a0f3eb3471e24 /release_docs
parent21bf61ee91ce91d7a73c96d7c680f844c64c5309 (diff)
downloadhdf5-9c9f70ed695a0022a55bf53d085b7540ae5b5281.zip
hdf5-9c9f70ed695a0022a55bf53d085b7540ae5b5281.tar.gz
hdf5-9c9f70ed695a0022a55bf53d085b7540ae5b5281.tar.bz2
[1.10 Merge] Hdf5 1 10 develop merges (#2013)
* Fix invalid comment about character encoding in H5Fint.c (#1845) * Convert assertion on (possibly corrupt) file contents to normal error check (#1861) * Convert assertion on (possibly corrupt) file contents to normal error check * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * Avoid allocating chunk map for contiguous and compact dataset I/O (#1927) * Add documentation for parallel compression feature (#1981) Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/RELEASE.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 08cec29..e21c391 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -163,7 +163,16 @@ Bug Fixes since HDF5-1.10.9 release
===================================
Library
-------
- -
+ - Converted an assertion on (possibly corrupt) file contents to a normal
+ error check
+
+ Previously, the library contained an assertion check that a read superblock
+ doesn't contain a superblock extension message when the superblock
+ version < 2. When a corrupt HDF5 file is read, this assertion can be triggered
+ in debug builds of HDF5. In production builds, this situation could cause
+ either a library error or a crash, depending on the platform.
+
+ (JTH - 2022/07/08, HDFFV-11316, HDFFV-11317)
Java Library