summaryrefslogtreecommitdiffstats
path: root/src/H5Tcommit.c
diff options
context:
space:
mode:
authorChris Hogan <chogan@hdfgroup.org>2019-11-27 16:56:52 (GMT)
committerChris Hogan <chogan@hdfgroup.org>2019-11-27 16:56:52 (GMT)
commitbbc37549dafd31f9a7ea45bff26702e1a0346c32 (patch)
tree72cd00db490b9d2e157582c3b289b6521cc05258 /src/H5Tcommit.c
parentb1f884f5a4f48a023f9aeb2eba1426299f348a49 (diff)
downloadhdf5-bbc37549dafd31f9a7ea45bff26702e1a0346c32.zip
hdf5-bbc37549dafd31f9a7ea45bff26702e1a0346c32.tar.gz
hdf5-bbc37549dafd31f9a7ea45bff26702e1a0346c32.tar.bz2
Use H5CX for LCPL property retrieval
Diffstat (limited to 'src/H5Tcommit.c')
-rw-r--r--src/H5Tcommit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Tcommit.c b/src/H5Tcommit.c
index 649bd2e..0a2e9af 100644
--- a/src/H5Tcommit.c
+++ b/src/H5Tcommit.c
@@ -128,6 +128,9 @@ H5Tcommit2(hid_t loc_id, const char *name, hid_t type_id, hid_t lcpl_id,
if(TRUE != H5P_isa_class(tcpl_id, H5P_DATATYPE_CREATE))
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not datatype creation property list")
+ /* Set the LCPL for the API context */
+ H5CX_set_lcpl(lcpl_id);
+
/* Verify access property list and set up collective metadata if appropriate */
if(H5CX_set_apl(&tapl_id, H5P_CLS_TACC, loc_id, TRUE) < 0)
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTSET, FAIL, "can't set access property list info")