diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-07-30 18:53:01 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-07-30 18:53:01 (GMT) |
commit | 0c9c34fab681a559633cbae215cb49ca812f4a3d (patch) | |
tree | ea192413d801b0a9d550172ca3e8f8d7771f3659 /src/H5Gpkg.h | |
parent | ddb2af421f244dd92e8d7f53a1bb2b9a9df14bde (diff) | |
download | hdf5-0c9c34fab681a559633cbae215cb49ca812f4a3d.zip hdf5-0c9c34fab681a559633cbae215cb49ca812f4a3d.tar.gz hdf5-0c9c34fab681a559633cbae215cb49ca812f4a3d.tar.bz2 |
[svn-r11176] Purpose:
Bug fix
Description:
Correct problems when querying information about a group that was opened
by dereferencing an object reference.
Solution:
Read in symbol table information instead of rely on it being cached.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/H5Gpkg.h')
-rw-r--r-- | src/H5Gpkg.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Gpkg.h b/src/H5Gpkg.h index 36a18f9..f970b2d 100644 --- a/src/H5Gpkg.h +++ b/src/H5Gpkg.h @@ -32,6 +32,7 @@ /* Other private headers needed by this file */ #include "H5ACprivate.h" /* Metadata cache */ +#include "H5Oprivate.h" /* Object headers */ /* * A symbol table node is a collection of symbol table entries. It can @@ -113,7 +114,7 @@ typedef struct H5G_bt_ud2_t { */ typedef struct H5G_bt_ud3_t { /* downward */ - H5G_entry_t *ent; /*the entry of group being queried */ + const H5O_stab_t *mesg; /*the symbol table message of group being queried */ hsize_t idx; /*index of group member to be queried */ hsize_t num_objs; /*the number of objects having been traversed*/ |