summaryrefslogtreecommitdiffstats
path: root/src/H5Dint.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2019-12-03 23:27:17 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-20 14:20:19 (GMT)
commitd00c5685b608fbb951f9398495951ee072375232 (patch)
treeb11f87cd8162e9b38417ca718d71601b298a924e /src/H5Dint.c
parent44e8fe048b692950efd70b020a413791e4621f10 (diff)
downloadhdf5-d00c5685b608fbb951f9398495951ee072375232.zip
hdf5-d00c5685b608fbb951f9398495951ee072375232.tar.gz
hdf5-d00c5685b608fbb951f9398495951ee072375232.tar.bz2
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 cabd573..4e4c0d5 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: