summaryrefslogtreecommitdiffstats
path: root/release_docs/RELEASE.txt
diff options
context:
space:
mode:
authorMark Kittisopikul <mkitti@users.noreply.github.com>2023-07-16 04:31:57 (GMT)
committerGitHub <noreply@github.com>2023-07-16 04:31:57 (GMT)
commit426a7f82f6ce4d75ec8bfd30d1fa198c49efaa97 (patch)
treeb6c081097820ecf75c62fca196ab6e85f8e81cb8 /release_docs/RELEASE.txt
parent305ac8886566968ae58ba771e0ae2ba6434ac9f0 (diff)
downloadhdf5-426a7f82f6ce4d75ec8bfd30d1fa198c49efaa97.zip
hdf5-426a7f82f6ce4d75ec8bfd30d1fa198c49efaa97.tar.gz
hdf5-426a7f82f6ce4d75ec8bfd30d1fa198c49efaa97.tar.bz2
Avoid truncating at null byte when copying to std::string (#3083)
--------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r--release_docs/RELEASE.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 1c12071..bdd9a1e 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -477,6 +477,13 @@ Bug Fixes since HDF5-1.14.0 release
Fixes GitHub issue #2432
+ - Reading a H5std_string (std::string) via a C++ DataSet previously
+ truncated the string at the first null byte as if reading a C string.
+ Fixed length datasets are now read into H5std_string as a fixed length
+ string of the appropriate size. Variable length datasets will still be
+ truncated at the first null byte.
+
+ Fixes Github issue #3034
Java Library
------------