From 432656d9d6e687a7d31f50de71845d1ebb74b00f Mon Sep 17 00:00:00 2001 From: Jordan Henderson Date: Thu, 31 Aug 2023 16:13:59 -0500 Subject: [PATCH] Fix merge issue --- src/H5Dint.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/H5Dint.c b/src/H5Dint.c index a1244d99cba..02154d4f4c3 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -1812,9 +1812,11 @@ H5D__open_oid(H5D_t *dataset, hid_t dapl_id) dataset->shared->dcpl_cache.pline.nused == 0)); if (must_init_storage) { + H5D_io_info_t io_info; + io_info.dset = dataset; - if (H5D__alloc_storage(dataset, H5D_ALLOC_OPEN, FALSE, NULL) < 0) + if (H5D__alloc_storage(&io_info, H5D_ALLOC_OPEN, FALSE, NULL) < 0) HGOTO_ERROR(H5E_DATASET, H5E_CANTINIT, FAIL, "unable to initialize file storage") }