summaryrefslogtreecommitdiffstats
path: root/release_docs/RELEASE.txt
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-08-17 19:25:10 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-08-17 19:25:10 (GMT)
commit105a05cb9072d21b4158eb9743990b07623097a7 (patch)
treec99477d3a019c46d90b3865ec650051ca86786fd /release_docs/RELEASE.txt
parenta7a814fa83f74981e04cdc2a371e4fd5f26de471 (diff)
parenta6100a3445921480a9d65dbfc49e7600e7923bd5 (diff)
downloadhdf5-105a05cb9072d21b4158eb9743990b07623097a7.zip
hdf5-105a05cb9072d21b4158eb9743990b07623097a7.tar.gz
hdf5-105a05cb9072d21b4158eb9743990b07623097a7.tar.bz2
Merge pull request #1205 in HDFFV/hdf5 from ~BYRN/hdf5_merge_adb:develop to develop
* commit 'a6100a3445921480a9d65dbfc49e7600e7923bd5': HDFFV-10536 callback crash fixed by using stack structure
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r--release_docs/RELEASE.txt10
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.