summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2002-08-30 21:59:22 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2002-08-30 21:59:22 (GMT)
commitdd44d88893544a51adee20d007eb526516dab3d6 (patch)
tree2ac845ecc9f8ff739bb853a296a937e460f2624f /src
parent35ea1840d10840db266a3343ecbd1ca21c68b16d (diff)
downloadhdf5-dd44d88893544a51adee20d007eb526516dab3d6.zip
hdf5-dd44d88893544a51adee20d007eb526516dab3d6.tar.gz
hdf5-dd44d88893544a51adee20d007eb526516dab3d6.tar.bz2
[svn-r5907]
Purpose: bug turnaround in test_hdf5_fortran on a h5fmount_c call Description: the H5I_nmembers(H5I_GROUP) call that is made inside h5fmount_c -> H5G_replace_name -> H5I_nmembers(H5I_GROUP) is not detecteting correctly that the entry belongs to the group list therefore a call is made to H5I_search(H5I_DATATYPE) (there are always non-named datatypes) and H5G_replace_ent is called with a search for the datatype group ent = H5T_entof((H5T_t*)obj_ptr); which returns a NULL ent a tweak for this is to add if( !ent) goto done; Platforms tested: windows 2000, Linux, Solaris with fortran
Diffstat (limited to 'src')
-rw-r--r--src/H5G.c39
1 files changed, 34 insertions, 5 deletions
diff --git a/src/H5G.c b/src/H5G.c
index 2141389..482a551 100644
--- a/src/H5G.c
+++ b/src/H5G.c
@@ -1047,7 +1047,8 @@ H5G_basename(const char *name, size_t *size_p)
* when the library terminates.
*
* Pedro Vicente, <pvn@ncsa.uiuc.edu> 22 Aug 2002
- * Added a deep copy of the symbol table entry
+ * Modified to deep copies of symbol table entries
+ * Added `id to name' support.
*
*-------------------------------------------------------------------------
*/
@@ -1064,6 +1065,8 @@ H5G_namei(H5G_entry_t *loc_ent, const char *name, const char **rest/*out*/,
herr_t ret_value=SUCCEED; /* Return value */
H5G_t *tmp_grp;
+ const char *orig_name = name;
+ H5G_entry_t tmp_obj_ent; /*temporary entry for search */
FUNC_ENTER_NOINIT(H5G_namei);
@@ -1130,13 +1133,33 @@ H5G_namei(H5G_entry_t *loc_ent, const char *name, const char **rest/*out*/,
HDmemset(obj_ent, 0, sizeof(H5G_entry_t));
obj_ent->header = HADDR_UNDEF;
- if (H5G_stab_find(grp_ent, H5G_comp_g, obj_ent/*out*/)<0) {
+ /* Temporary entry */
+ tmp_obj_ent = *obj_ent;
+
+ if (H5G_stab_find(grp_ent, H5G_comp_g, &tmp_obj_ent/*out*/)<0) {
/*
* Component was not found in the current symbol table, possibly
* because GRP_ENT isn't a symbol table.
*/
HGOTO_ERROR(H5E_SYM, H5E_NOTFOUND, FAIL, "component not found");
}
+
+ /* Deep copy of the symbol table entry */
+ if (H5G_ent_copy( &tmp_obj_ent, obj_ent )<0)
+ HGOTO_ERROR(H5E_DATATYPE, H5E_CANTOPENOBJ, FAIL, "unable to copy entry");
+
+ /* Remove the 'ID to name' info, if the entry is mot the one we want */
+ if ( tmp_obj_ent.name ) {
+ if (HDstrcmp(orig_name,tmp_obj_ent.name)!=0)
+ {
+ /* Free the ID to name buffers */
+ if ( tmp_obj_ent.name )
+ tmp_obj_ent.name = H5MM_xfree(tmp_obj_ent.name);
+ if ( tmp_obj_ent.old_name )
+ tmp_obj_ent.old_name = H5MM_xfree(tmp_obj_ent.old_name);
+ }
+ }
+
/*
* If we found a symbolic link then we should follow it. But if this
@@ -1164,9 +1187,12 @@ H5G_namei(H5G_entry_t *loc_ent, const char *name, const char **rest/*out*/,
/* next component */
name += nchars;
- }
- if (rest)
- *rest = name; /*final null */
+
+
+ }
+
+ if (rest)
+ *rest = name; /*final null */
done:
FUNC_LEAVE(ret_value);
@@ -2773,6 +2799,9 @@ done:
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL,
"unknown data object");
}
+
+ if( !ent)
+ goto done;
/* Check if is a mounted file */