diff options
author | Quincey Koziol <koziol@koziol.gov> | 2019-12-21 04:49:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@koziol.gov> | 2020-01-04 16:02:55 (GMT) |
commit | dd3931266a7022bb128dd851713bd2754d4e58eb (patch) | |
tree | 70e24abc1c3dfded78a317bfe3a36783281e5b47 /src | |
parent | fa599f450832c6284969c47b8e2cad1f5c6752c7 (diff) | |
download | hdf5-dd3931266a7022bb128dd851713bd2754d4e58eb.zip hdf5-dd3931266a7022bb128dd851713bd2754d4e58eb.tar.gz hdf5-dd3931266a7022bb128dd851713bd2754d4e58eb.tar.bz2 |
Remove unnecessary H5CX call
Diffstat (limited to 'src')
-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") |