summaryrefslogtreecommitdiffstats
path: root/src/H5Shyper.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2015-09-08 20:41:38 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2015-09-08 20:41:38 (GMT)
commitf3da95644105e1a70f7b5246128ff542585695e5 (patch)
tree00daab220966ff82163e957a5003a78bbeb8ec9f /src/H5Shyper.c
parentdceb3f1818e6884f0af429aa44862c169933a8e9 (diff)
downloadhdf5-f3da95644105e1a70f7b5246128ff542585695e5.zip
hdf5-f3da95644105e1a70f7b5246128ff542585695e5.tar.gz
hdf5-f3da95644105e1a70f7b5246128ff542585695e5.tar.bz2
[svn-r27701] RM offset initialization that is no longer necessary with the recent fix to
H5Screate(). Tested: ummon
Diffstat (limited to 'src/H5Shyper.c')
-rw-r--r--src/H5Shyper.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/H5Shyper.c b/src/H5Shyper.c
index 2215e7a..70c9b67 100644
--- a/src/H5Shyper.c
+++ b/src/H5Shyper.c
@@ -10231,10 +10231,6 @@ H5S_hyper_get_unlim_block(const H5S_t *space, hsize_t block_index)
if(H5S_extent_copy_real(&space_out->extent, &space->extent, TRUE) < 0)
HGOTO_ERROR(H5E_DATASPACE, H5E_CANTCOPY, NULL, "unable to copy destination space extent")
- /* Set offset to zeros */
- (void)HDmemset(space_out->select.offset, 0, (size_t)space_out->extent.rank * sizeof(space_out->select.offset[0]));
- space_out->select.offset_changed = FALSE;
-
/* Select block as defined by start/stride/count/block computed above */
if(H5S_select_hyperslab(space_out, H5S_SELECT_SET, start, stride, count, block) < 0)
HGOTO_ERROR(H5E_DATASPACE, H5E_CANTINIT, NULL, "can't select hyperslab")