summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHDF Tester <hdftest@hdfgroup.org>2010-02-12 17:20:49 (GMT)
committerHDF Tester <hdftest@hdfgroup.org>2010-02-12 17:20:49 (GMT)
commit4eefbc505a329d3c03d4470ce1240980a452beb9 (patch)
tree6563004b61b8c475a1f8cacd2523030b7f653684 /src
parent5768fb97f9faffe703b42914615c495ebd56678c (diff)
downloadhdf5-4eefbc505a329d3c03d4470ce1240980a452beb9.zip
hdf5-4eefbc505a329d3c03d4470ce1240980a452beb9.tar.gz
hdf5-4eefbc505a329d3c03d4470ce1240980a452beb9.tar.bz2
[svn-r18234] Snapshot version 1.8 release 4 (snap11)
Diffstat (limited to 'src')
-rw-r--r--src/H5Groot.c3
-rw-r--r--src/H5O.c1
-rw-r--r--src/H5public.h4
3 files changed, 5 insertions, 3 deletions
diff --git a/src/H5Groot.c b/src/H5Groot.c
index e4cdc46..f4a18ae 100644
--- a/src/H5Groot.c
+++ b/src/H5Groot.c
@@ -252,11 +252,12 @@ done:
if(f->shared->root_grp) {
if(f->shared->root_grp->shared)
f->shared->root_grp->shared = H5FL_FREE(H5G_shared_t, f->shared->root_grp->shared);
+ H5G_name_free(root_loc.path);
f->shared->root_grp = H5FL_FREE(H5G_t, f->shared->root_grp);
} /* end if */
if(f->shared->sblock)
f->shared->sblock->root_ent = (H5G_entry_t *)H5MM_xfree(f->shared->sblock->root_ent);
- H5G_name_free(root_loc.path);
+ /* H5G_name_free(root_loc.path);*/
} /* end if */
/* Mark superblock dirty in cache, if necessary */
diff --git a/src/H5O.c b/src/H5O.c
index 52db34f..402e7ee 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -555,6 +555,7 @@ H5Oexists_by_name(hid_t loc_id, const char *name, hid_t lapl_id)
hid_t ret_value = FAIL; /* Return value */
FUNC_ENTER_API(H5Oexists_by_name, FAIL)
+ H5TRACE3("t", "i*si", loc_id, name, lapl_id);
/* Check args */
if(H5G_loc(loc_id, &loc) < 0)
diff --git a/src/H5public.h b/src/H5public.h
index 70a0623..431c8e2 100644
--- a/src/H5public.h
+++ b/src/H5public.h
@@ -72,9 +72,9 @@ extern "C" {
#define H5_VERS_MAJOR 1 /* For major interface/format changes */
#define H5_VERS_MINOR 8 /* For minor interface/format changes */
#define H5_VERS_RELEASE 4 /* For tweaks, bug-fixes, or development */
-#define H5_VERS_SUBRELEASE "snap11" /* For pre-releases like snap0 */
+#define H5_VERS_SUBRELEASE "snap12" /* For pre-releases like snap0 */
/* Empty string for real releases. */
-#define H5_VERS_INFO "HDF5 library version: 1.8.4-snap11" /* Full version string */
+#define H5_VERS_INFO "HDF5 library version: 1.8.4-snap12" /* Full version string */
#define H5check() H5check_version(H5_VERS_MAJOR,H5_VERS_MINOR, \
H5_VERS_RELEASE)