summaryrefslogtreecommitdiffstats
path: root/src/H5Defl.c
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2023-08-05 22:54:32 (GMT)
committerGitHub <noreply@github.com>2023-08-05 22:54:32 (GMT)
commit8ceb226bae916152510387da6f7f9710903882a8 (patch)
tree7742c6f4e824261e6b12cbd7e9e2cadecd128bfc /src/H5Defl.c
parent524a71ef6779f2789ea50df4eb930b3cbc71c61b (diff)
downloadhdf5-8ceb226bae916152510387da6f7f9710903882a8.zip
hdf5-8ceb226bae916152510387da6f7f9710903882a8.tar.gz
hdf5-8ceb226bae916152510387da6f7f9710903882a8.tar.bz2
Merge 1 14 post0804 (#3359)
* Fix for the bug exposed from running test/set_extent.c when selection I/O is enabled. (#3319) This is a fix from Neil. The test/set_extent.c is modified to test for selection I/O enabled. * test(parallel): verify FALSE case (#3356)
Diffstat (limited to 'src/H5Defl.c')
-rw-r--r--src/H5Defl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Defl.c b/src/H5Defl.c
index 84a3042..84f00ed 100644
--- a/src/H5Defl.c
+++ b/src/H5Defl.c
@@ -198,6 +198,9 @@ H5D__efl_io_init(H5D_io_info_t *io_info, H5D_dset_io_info_t *dinfo)
H5MM_memcpy(&dinfo->store->efl, &(dinfo->dset->shared->dcpl_cache.efl), sizeof(H5O_efl_t));
+ /* No "pieces" selected */
+ dinfo->layout_io_info.contig_piece_info = NULL;
+
/* Disable selection I/O */
io_info->use_select_io = H5D_SELECTION_IO_MODE_OFF;
io_info->no_selection_io_cause |= H5D_SEL_IO_NOT_CONTIGUOUS_OR_CHUNKED_DATASET;