From 9fcc88fa46a661ad7a7d482b45fa0055bd1035ee Mon Sep 17 00:00:00 2001 From: Neil Fortner Date: Fri, 28 Apr 2017 15:57:33 -0500 Subject: Fix bug in H5Gopen1 where it would pass H5P_DEFAULT instead of H5P_GROUP_ACCESS_DEFAULT to the VOL layer. --- src/H5Gdeprec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Gdeprec.c b/src/H5Gdeprec.c index 16e8c05..a79f0ae 100644 --- a/src/H5Gdeprec.c +++ b/src/H5Gdeprec.c @@ -293,7 +293,7 @@ H5Gopen1(hid_t loc_id, const char *name) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "invalid location identifier") /* Create the group through the VOL */ - if(NULL == (grp = H5VL_group_open(obj->vol_obj, loc_params, obj->vol_info->vol_cls, name, H5P_DEFAULT, + if(NULL == (grp = H5VL_group_open(obj->vol_obj, loc_params, obj->vol_info->vol_cls, name, H5P_GROUP_ACCESS_DEFAULT, H5AC_ind_read_dxpl_id, H5_REQUEST_NULL))) HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "unable to create group") -- cgit v0.12