summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2019-12-05 22:13:12 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2019-12-05 22:13:12 (GMT)
commit5efd80f6ec558845e7438a7407888de56da63588 (patch)
tree1aba6f2886fd76ed857b796f6391b5c15fc96a60 /src/H5Dint.c
parent8c9b8047ea6aafa8d2249238658d0c29724adb61 (diff)
parent12ac0587e7b9b18a56907aa78f68c084dd5b51b4 (diff)
downloadhdf5-5efd80f6ec558845e7438a7407888de56da63588.zip
hdf5-5efd80f6ec558845e7438a7407888de56da63588.tar.gz
hdf5-5efd80f6ec558845e7438a7407888de56da63588.tar.bz2
Merge pull request #2073 in HDFFV/hdf5 from ~NFORTNE2/hdf5_naf:vol_vl_buf_size to develop
* commit '12ac0587e7b9b18a56907aa78f68c084dd5b51b4': Implement support for using H5Dvlen_get_buf_size with non-native VOL connectors.
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r--src/H5Dint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c
index 0acb030..c3d4398 100644
--- a/src/H5Dint.c
+++ b/src/H5Dint.c
@@ -2639,7 +2639,7 @@ H5D__vlen_get_buf_size(void H5_ATTR_UNUSED *elem, hid_t type_id,
HGOTO_ERROR(H5E_DATASET, H5E_CANTCREATE, FAIL, "can't select point")
/* Read in the point (with the custom VL memory allocator) */
- if(H5VL_dataset_read(vol_obj, type_id, vlen_bufsize->mspace_id, vlen_bufsize->fspace_id, H5P_DATASET_XFER_DEFAULT, vlen_bufsize->fl_tbuf, H5_REQUEST_NULL) < 0)
+ if(H5VL_dataset_read(vol_obj, type_id, vlen_bufsize->mspace_id, vlen_bufsize->fspace_id, vlen_bufsize->dxpl_id, vlen_bufsize->fl_tbuf, H5_REQUEST_NULL) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_READERROR, FAIL, "can't read point")
done: