Skip to content

Commit

Permalink
Fix merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jhendersonHDF committed Aug 31, 2023
1 parent 6646fa9 commit 432656d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/H5Dint.c
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}

Expand Down

0 comments on commit 432656d

Please sign in to comment.