summaryrefslogtreecommitdiffstats
path: root/src/H5Aint.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-06 22:44:35 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-07-06 22:44:35 (GMT)
commit843ccf86dd147e245bab269520741b0f103b4d6b (patch)
tree0af8a96abba787fa04f1d3d92af2400066fa133d /src/H5Aint.c
parent7a070012c08c4ef16a6effc01e03c2ca7cd8fa00 (diff)
downloadhdf5-843ccf86dd147e245bab269520741b0f103b4d6b.zip
hdf5-843ccf86dd147e245bab269520741b0f103b4d6b.tar.gz
hdf5-843ccf86dd147e245bab269520741b0f103b4d6b.tar.bz2
[svn-r22523] - rework how IDs for VOL objects are created
- change how the vlose routine is registered with VOL IDs - some bug fixes
Diffstat (limited to 'src/H5Aint.c')
-rw-r--r--src/H5Aint.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/H5Aint.c b/src/H5Aint.c
index 5aa0dcd..cfe81dc 100644
--- a/src/H5Aint.c
+++ b/src/H5Aint.c
@@ -778,21 +778,15 @@ H5A_get_type(H5A_t *attr)
/* If this is a committed datatype, we need to recreate the
two level IDs, where the VOL object is a copy of the
returned datatype */
- ssize_t nalloc = 0;
- size_t size;
- unsigned char *buf = NULL;
-
/* Copy the dataset's datatype */
if(NULL == (type = H5T_copy(dt, H5T_COPY_REOPEN)))
HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to copy datatype")
H5T_set_vol_object(type, (void *)dt);
- if((ret_value = H5I_register(H5I_DATATYPE, type, TRUE)) < 0)
- HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to register datatype")
-
- if (H5VL_native_register_aux(ret_value) < 0)
- HGOTO_ERROR(H5E_VOL, H5E_CANTINIT, FAIL, "can't attach vol info to ID")
+ /* get an ID for the object */
+ if((ret_value = H5VL_native_register(H5I_DATATYPE, type, TRUE)) < 0)
+ HGOTO_ERROR(H5E_ATOM, H5E_CANTREGISTER, FAIL, "unable to atomize file handle")
}
else {
if((ret_value = H5I_register(H5I_DATATYPE, dt, TRUE)) < 0)