diff options
author | Quincey Koziol <koziol@koziol.gov> | 2019-12-21 04:49:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@koziol.gov> | 2019-12-21 04:49:48 (GMT) |
commit | c2ca33dcfa340af603399036dfddad0ebbd72f6f (patch) | |
tree | 8aa2ad8bfec50757b202ad67e500c270c763160d /src/H5Dint.c | |
parent | cf5cd3b639992718faf71027bc050b18c9ff853d (diff) | |
download | hdf5-c2ca33dcfa340af603399036dfddad0ebbd72f6f.zip hdf5-c2ca33dcfa340af603399036dfddad0ebbd72f6f.tar.gz hdf5-c2ca33dcfa340af603399036dfddad0ebbd72f6f.tar.bz2 |
Remove unnecessary H5CX call
Diffstat (limited to 'src/H5Dint.c')
-rw-r--r-- | src/H5Dint.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/H5Dint.c b/src/H5Dint.c index 96b1dbd..c3e0c0d 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -2883,10 +2883,6 @@ H5D__vlen_get_buf_size_gen(H5VL_object_t *vol_obj, hid_t type_id, hid_t space_id HGOTO_ERROR(H5E_DATASET, H5E_CANTALLOC, FAIL, "no temporary buffers available") vlen_bufsize.common.vl_tbuf_size = 1; - /* Set the memory manager to the special allocation routine */ - if(H5CX_set_vlen_alloc_info(H5D__vlen_get_buf_size_alloc, &vlen_bufsize.common, NULL, NULL) < 0) - HGOTO_ERROR(H5E_DATASET, H5E_CANTSET, FAIL, "can't set VL data allocation routine") - /* Set the VL allocation callbacks on a DXPL */ if(NULL == (dxpl = (H5P_genplist_t *)H5I_object(H5P_DATASET_XFER_DEFAULT))) HGOTO_ERROR(H5E_DATASET, H5E_CANTGET, FAIL, "can't get default DXPL") |