diff options
author | Chris Hogan <chogan@hdfgroup.org> | 2019-10-28 21:24:54 (GMT) |
---|---|---|
committer | Chris Hogan <chogan@hdfgroup.org> | 2019-10-29 16:46:48 (GMT) |
commit | f8ab081b1f1abcbf76c151d7960ee97a556b4be9 (patch) | |
tree | d973514a5217823c70b29499f569dccb709afa7e /src/H5Ocopy.c | |
parent | afd4b291315e39e3966eadaf8ae9894b30e9504e (diff) | |
download | hdf5-f8ab081b1f1abcbf76c151d7960ee97a556b4be9.zip hdf5-f8ab081b1f1abcbf76c151d7960ee97a556b4be9.tar.gz hdf5-f8ab081b1f1abcbf76c151d7960ee97a556b4be9.tar.bz2 |
Use API context to store/retrieve LCPL when creating intermediate groups
Diffstat (limited to 'src/H5Ocopy.c')
-rw-r--r-- | src/H5Ocopy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Ocopy.c b/src/H5Ocopy.c index 6e0db25..55013c9 100644 --- a/src/H5Ocopy.c +++ b/src/H5Ocopy.c @@ -227,6 +227,9 @@ H5Ocopy(hid_t src_loc_id, const char *src_name, hid_t dst_loc_id, if(TRUE != H5P_isa_class(ocpypl_id, H5P_OBJECT_COPY)) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not object copy property list") + /* Set the LCPL for the API context */ + H5CX_set_lcpl(lcpl_id); + /* Set up collective metadata if appropriate */ if(H5CX_set_loc(src_loc_id) < 0) HGOTO_ERROR(H5E_OHDR, H5E_CANTSET, FAIL, "can't set collective metadata read info") |