summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2018-03-20 21:28:11 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2018-03-20 21:28:11 (GMT)
commit0bcaa290e07154cc0376b5084c4336e162d777ef (patch)
tree068a7a917e1b4cf72361f7d2d5cbf7b78747d6d9 /src
parent8b77fd7d1af9fa387e5441e473b817589c93ab3f (diff)
parent6a1627f2967099039e11b9e86cf347f6482bdf3c (diff)
downloadhdf5-0bcaa290e07154cc0376b5084c4336e162d777ef.zip
hdf5-0bcaa290e07154cc0376b5084c4336e162d777ef.tar.gz
hdf5-0bcaa290e07154cc0376b5084c4336e162d777ef.tar.bz2
Merge pull request #983 in HDFFV/hdf5 from develop to hdf5_1_10
* commit '6a1627f2967099039e11b9e86cf347f6482bdf3c': Fix for HDFFV-10425 test failure with H5DOwrite_chunk and latest format Fix date. Correct the date in RELEASE.txt for H5DOread_chunk. Add release info for H5DOread_chunk. Updated RELEASE.txt Description: Wrappers for H5Tencode and H5Tdecode No code change. Fixed HDFFV-10151 Description: Added a document to the HDF5 C++ API Reference Manual to show the mapping from a C API to C++ wrappers. Fix memory leak simply by capturing allocation in var Change max value Chnage values so test will fail when new latest is added Exception changed Exception type changed Correct constant var names Java constants for new lib verbounds values
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 f96abdd..391d79d 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 */