summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-08-21 13:23:12 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-08-21 13:23:12 (GMT)
commit3537a81e35b64903bcafd92a411cd1ca02ce4f2b (patch)
treed6e7d13a89ce996f540f9b804046e38e2c0a63ee /release_docs
parentc9b8f6b44b0fb803047f5445e15c4137d7a4e630 (diff)
downloadhdf5-3537a81e35b64903bcafd92a411cd1ca02ce4f2b.zip
hdf5-3537a81e35b64903bcafd92a411cd1ca02ce4f2b.tar.gz
hdf5-3537a81e35b64903bcafd92a411cd1ca02ce4f2b.tar.bz2
HDFFV-10536 Convert iterator callbacks from global to stack var
Diffstat (limited to 'release_docs')
-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 6c8f321..872bced 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -181,6 +181,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.