summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVailin Choi <vchoi@jam.ad.hdfgroup.org>2018-03-20 18:39:01 (GMT)
committerVailin Choi <vchoi@jam.ad.hdfgroup.org>2018-03-20 18:39:01 (GMT)
commitbdaacfd58b0b0e6082358d14cea7bb1f886c85f8 (patch)
treea0cde6daf41aef60e86e6ef344afdeb7062dc60d /src
parent0a7ae62dca4b33cbda87df41ff60bfe359f52444 (diff)
downloadhdf5-bdaacfd58b0b0e6082358d14cea7bb1f886c85f8.zip
hdf5-bdaacfd58b0b0e6082358d14cea7bb1f886c85f8.tar.gz
hdf5-bdaacfd58b0b0e6082358d14cea7bb1f886c85f8.tar.bz2
Fix for HDFFV-10425 test failure with H5DOwrite_chunk and latest format
Diffstat (limited to 'src')
-rw-r--r--src/H5Dchunk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c
index be3b678..b350006 100644
--- a/src/H5Dchunk.c
+++ b/src/H5Dchunk.c
@@ -486,7 +486,7 @@ H5D__chunk_direct_write(const H5D_t *dset, hid_t dxpl_id, uint32_t filters,
/* Set the chunk's filter mask to the new settings */
udata.filter_mask = filters;
- if((layout->storage.u.chunk.ops->insert)(&idx_info, &udata, NULL) < 0)
+ if((layout->storage.u.chunk.ops->insert)(&idx_info, &udata, dset) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTINSERT, FAIL, "unable to insert chunk addr into index")
} /* end if */