diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2018-03-20 19:53:56 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2018-03-20 19:53:56 (GMT) |
commit | 6a1627f2967099039e11b9e86cf347f6482bdf3c (patch) | |
tree | a0cde6daf41aef60e86e6ef344afdeb7062dc60d /src/H5Dchunk.c | |
parent | 0a7ae62dca4b33cbda87df41ff60bfe359f52444 (diff) | |
parent | bdaacfd58b0b0e6082358d14cea7bb1f886c85f8 (diff) | |
download | hdf5-6a1627f2967099039e11b9e86cf347f6482bdf3c.zip hdf5-6a1627f2967099039e11b9e86cf347f6482bdf3c.tar.gz hdf5-6a1627f2967099039e11b9e86cf347f6482bdf3c.tar.bz2 |
Merge pull request #981 in HDFFV/hdf5 from ~VCHOI/my_hdf5_fork:develop to develop
* commit 'bdaacfd58b0b0e6082358d14cea7bb1f886c85f8':
Fix for HDFFV-10425 test failure with H5DOwrite_chunk and latest format
Diffstat (limited to 'src/H5Dchunk.c')
-rw-r--r-- | src/H5Dchunk.c | 2 |
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 */ |