summaryrefslogtreecommitdiffstats
path: root/src/H5Oint.c
diff options
context:
space:
mode:
authorChris Hogan <chogan@hdfgroup.org>2019-11-14 21:56:15 (GMT)
committerChris Hogan <chogan@hdfgroup.org>2019-11-14 21:56:15 (GMT)
commita7b35b8584e547d72ff4c215a0295fa9f1241082 (patch)
tree476d11725a759b7dae3f9e461875ff291a4cf83a /src/H5Oint.c
parent07ff0a842a41f4e6a257d9e957e5fbc5628d996e (diff)
downloadhdf5-a7b35b8584e547d72ff4c215a0295fa9f1241082.zip
hdf5-a7b35b8584e547d72ff4c215a0295fa9f1241082.tar.gz
hdf5-a7b35b8584e547d72ff4c215a0295fa9f1241082.tar.bz2
Add object header flags to API context
Add missing DCPL to API context state Replace a couple LCPL H5P_get calls with H5CX_get_*
Diffstat (limited to 'src/H5Oint.c')
-rw-r--r--src/H5Oint.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/H5Oint.c b/src/H5Oint.c
index ecf347c..b97ff30 100644
--- a/src/H5Oint.c
+++ b/src/H5Oint.c
@@ -352,8 +352,18 @@ H5O__create_ohdr(H5F_t *f, hid_t ocpl_id)
HGOTO_ERROR(H5E_PLIST, H5E_BADTYPE, NULL, "not a property list")
/* Get any object header status flags set by properties */
- if(H5P_get(oc_plist, H5O_CRT_OHDR_FLAGS_NAME, &oh_flags) < 0)
- HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, NULL, "can't get object header flags")
+ if(H5P_DATASET_CREATE_DEFAULT == ocpl_id)
+ {
+ /* If the OCPL is the default DCPL, we can get the header flags from the
+ * API context. Otherwise we have to call H5P_get */
+ if(H5CX_get_ohdr_flags(&oh_flags) < 0)
+ HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, NULL, "can't get object header flags")
+ }
+ else
+ {
+ if(H5P_get(oc_plist, H5O_CRT_OHDR_FLAGS_NAME, &oh_flags) < 0)
+ HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, NULL, "can't get object header flags")
+ }
if(H5O_set_version(f, oh, oh_flags, H5F_STORE_MSG_CRT_IDX(f)) < 0)
HGOTO_ERROR(H5E_OHDR, H5E_CANTSET, NULL, "can't set version of object header")