summaryrefslogtreecommitdiffstats
path: root/src/H5T.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2016-07-04 23:21:06 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2016-07-04 23:21:06 (GMT)
commitdfe0d7984a32dcef677eb8d70a355f093512624c (patch)
tree8fc14ff9560f76d06903c6de1e9ac02fb5c123cd /src/H5T.c
parent2889ea742e5c78b629ac69f6e8f9046843487d13 (diff)
downloadhdf5-dfe0d7984a32dcef677eb8d70a355f093512624c.zip
hdf5-dfe0d7984a32dcef677eb8d70a355f093512624c.tar.gz
hdf5-dfe0d7984a32dcef677eb8d70a355f093512624c.tar.bz2
[svn-r30145] Merge of checkin #30143 to the trunk which is a bug fix for HDFFV-9940.
Tested on oxs1010test, moohan, platypus, emu, kite, kituo, mayll, ostrich, quail.
Diffstat (limited to 'src/H5T.c')
-rw-r--r--src/H5T.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/H5T.c b/src/H5T.c
index 9673ee9..2083e2d 100644
--- a/src/H5T.c
+++ b/src/H5T.c
@@ -4989,6 +4989,49 @@ done:
FUNC_LEAVE_NOAPI(ret_value)
}
+/*-------------------------------------------------------------------------
+ * Function: H5T_convert_committed_datatype
+ *
+ * Purpose: To convert the committed datatype "dt" to a transient embedded
+ * type if the file location associated with the committed datatype is
+ * different from the parameter "f".
+ * "f" is the file location where the dataset or attribute will be created.
+ *
+ * Notes: See HDFFV-9940
+ *
+ * Return: Success: non-negative
+ * Failure: negative
+ *
+ * Programmer: Vailin Choi; June 2016
+ *
+ *-------------------------------------------------------------------------
+ */
+herr_t
+H5T_convert_committed_datatype(H5T_t *dt, H5F_t *f)
+{
+ herr_t ret_value = SUCCEED; /* Return value */
+
+ FUNC_ENTER_NOAPI(FAIL)
+
+ HDassert(dt);
+ HDassert(f);
+
+ if(H5T_is_named(dt) && (dt->sh_loc.file != f)) {
+ HDassert(dt->sh_loc.type == H5O_SHARE_TYPE_COMMITTED);
+
+ H5O_msg_reset_share(H5O_DTYPE_ID, dt);
+ if(H5O_loc_free(&dt->oloc) < 0)
+ HGOTO_ERROR(H5E_DATATYPE, H5E_CANTRESET, FAIL, "unable to initialize location")
+ if(H5G_name_free(&dt->path) < 0)
+ HGOTO_ERROR(H5E_DATATYPE, H5E_CANTOPENOBJ, FAIL, "unable to reset path")
+
+ dt->shared->state = H5T_STATE_TRANSIENT;
+ }
+
+done:
+ FUNC_LEAVE_NOAPI(ret_value)
+} /* end H5T_convert_committed_datatype() */
+
/*--------------------------------------------------------------------------
NAME