diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2021-12-11 02:22:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-11 02:22:49 (GMT) |
commit | c0a13fd9d88e27b3996bc76c2927461634de5675 (patch) | |
tree | f7904182f6590156e3562540eb2f0f9428b17211 | |
parent | b54c738822d678286ef50fad49224ae9a1f0defd (diff) | |
download | hdf5-c0a13fd9d88e27b3996bc76c2927461634de5675.zip hdf5-c0a13fd9d88e27b3996bc76c2927461634de5675.tar.gz hdf5-c0a13fd9d88e27b3996bc76c2927461634de5675.tar.bz2 |
Remove duplicate memcpy in chunk_file_cb (#1285)
-rw-r--r-- | src/H5Dchunk.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c index 9742688..cad5c9f 100644 --- a/src/H5Dchunk.c +++ b/src/H5Dchunk.c @@ -2259,7 +2259,6 @@ H5D__chunk_file_cb(void H5_ATTR_UNUSED *elem, const H5T_t H5_ATTR_UNUSED *type, /* Set the chunk's scaled coordinates */ H5MM_memcpy(chunk_info->scaled, scaled, sizeof(hsize_t) * fm->f_ndims); chunk_info->scaled[fm->f_ndims] = 0; - H5MM_memcpy(chunk_info->scaled, scaled, sizeof(hsize_t) * fm->f_ndims); /* Insert the new chunk into the skip list */ if (H5SL_insert(fm->sel_chunks, chunk_info, &chunk_info->index) < 0) { |