summaryrefslogtreecommitdiffstats
path: root/src/H5D.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-09 22:20:16 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-09 22:20:16 (GMT)
commite582da571d5ac665351768c9c4ae5fb3f863c9cc (patch)
treedf8e40912c9e21c5addbed77f6c2f43482584c84 /src/H5D.c
parent843ccf86dd147e245bab269520741b0f103b4d6b (diff)
downloadhdf5-e582da571d5ac665351768c9c4ae5fb3f863c9cc.zip
hdf5-e582da571d5ac665351768c9c4ae5fb3f863c9cc.tar.gz
hdf5-e582da571d5ac665351768c9c4ae5fb3f863c9cc.tar.bz2
[svn-r22532] fix more named datatype issues.
move the dataset ID registration to H5Dint where the term_interface func is located
Diffstat (limited to 'src/H5D.c')
-rw-r--r--src/H5D.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/H5D.c b/src/H5D.c
index 7be906b..270befc 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -86,6 +86,10 @@ DESCRIPTION
static herr_t
H5D__init_pub_interface(void)
{
+ FUNC_ENTER_STATIC_NOERR
+
+ FUNC_LEAVE_NOAPI(H5D_init())
+#if 0
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_STATIC
@@ -97,6 +101,7 @@ H5D__init_pub_interface(void)
ret_value = H5D_init();
done:
FUNC_LEAVE_NOAPI(ret_value)
+#endif
} /* H5D__init_pub_interface() */
@@ -197,7 +202,6 @@ H5Dcreate2(hid_t loc_id, const char *name, hid_t type_id, hid_t space_id,
/* Get an atom for the dataset */
if((ret_value = H5I_register2(H5I_DATASET, dset, vol_plugin, TRUE)) < 0)
HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to atomize dataset handle")
-
vol_plugin->nrefs ++;
done: