diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-10 20:28:32 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-08-10 20:28:32 (GMT) |
commit | 0e1b41d0fd1521784128e8637b5afa8371d2779d (patch) | |
tree | 8c17410110f52e6c5b77e49d41a8c1af00a8e3da /src/H5Gpkg.h | |
parent | a8fbde5d18ea0b8e0567649571e527e9f04ab5c7 (diff) | |
download | hdf5-0e1b41d0fd1521784128e8637b5afa8371d2779d.zip hdf5-0e1b41d0fd1521784128e8637b5afa8371d2779d.tar.gz hdf5-0e1b41d0fd1521784128e8637b5afa8371d2779d.tar.bz2 |
[svn-r11229] Purpose:
Big fix
Description:
A group opened by dereferencing a object reference would not work for
H5Giterate(), due to the local heap & B-tree information not being cached.
Solution:
Get the local heap & B-tree info & point to that structure instead of
the group entry for the group.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5Gpkg.h')
-rw-r--r-- | src/H5Gpkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gpkg.h b/src/H5Gpkg.h index f970b2d..9b299ed 100644 --- a/src/H5Gpkg.h +++ b/src/H5Gpkg.h @@ -98,7 +98,7 @@ typedef struct H5G_bt_ud1_t { typedef struct H5G_bt_ud2_t { /* downward */ hid_t group_id; /*group id to pass to iteration operator */ - H5G_entry_t *ent; /*the entry to which group_id points */ + H5O_stab_t *stab; /*the cached symbol table info to which group_id points */ H5G_iterate_t op; /*iteration operator */ void *op_data; /*user-defined operator data */ int skip; /*initial entries to skip */ |