diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-08-17 19:12:11 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-08-17 19:12:11 (GMT) |
commit | a6100a3445921480a9d65dbfc49e7600e7923bd5 (patch) | |
tree | c99477d3a019c46d90b3865ec650051ca86786fd /release_docs/RELEASE.txt | |
parent | a7a814fa83f74981e04cdc2a371e4fd5f26de471 (diff) | |
download | hdf5-a6100a3445921480a9d65dbfc49e7600e7923bd5.zip hdf5-a6100a3445921480a9d65dbfc49e7600e7923bd5.tar.gz hdf5-a6100a3445921480a9d65dbfc49e7600e7923bd5.tar.bz2 |
HDFFV-10536 callback crash fixed by using stack structure
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r-- | release_docs/RELEASE.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 1e18dfe..3d42284 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -136,6 +136,16 @@ New Features Java Library: ---------------- + - Java iterator callbacks + + Change global callback object to a small stack structure in order + to fix a runtime crash. This crash was discovered when iterating + through a file with nested group members. The global variable + visit_callback is overwritten when recursion starts. When recursion + completes, visit_callback will be pointing to the wrong callback method. + + (ADB - 2018/08/15, HDFFV-10536) + - Java HDFLibraryException class Change parent class from Exception to RuntimeException. |