diff options
author | Mark Kittisopikul <mkitti@users.noreply.github.com> | 2023-07-16 04:31:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-16 04:31:57 (GMT) |
commit | 426a7f82f6ce4d75ec8bfd30d1fa198c49efaa97 (patch) | |
tree | b6c081097820ecf75c62fca196ab6e85f8e81cb8 /release_docs | |
parent | 305ac8886566968ae58ba771e0ae2ba6434ac9f0 (diff) | |
download | hdf5-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')
-rw-r--r-- | release_docs/RELEASE.txt | 7 |
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 ------------ |