From f3da95644105e1a70f7b5246128ff542585695e5 Mon Sep 17 00:00:00 2001 From: Neil Fortner Date: Tue, 8 Sep 2015 15:41:38 -0500 Subject: [svn-r27701] RM offset initialization that is no longer necessary with the recent fix to H5Screate(). Tested: ummon --- src/H5Shyper.c | 4 ---- src/H5Sselect.c | 4 ---- 2 files changed, 8 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") diff --git a/src/H5Sselect.c b/src/H5Sselect.c index 3a1c6c9..6b0ca6e 100644 --- a/src/H5Sselect.c +++ b/src/H5Sselect.c @@ -2258,10 +2258,6 @@ H5S_select_project_intersection(const H5S_t *src_space, const H5S_t *dst_space, if(H5S_extent_copy_real(&new_space->extent, &dst_space->extent, TRUE) < 0) HGOTO_ERROR(H5E_DATASPACE, H5E_CANTCOPY, FAIL, "unable to copy destination space extent") - /* Set offset to zeros */ - (void)HDmemset(new_space->select.offset, 0, (size_t)new_space->extent.rank * sizeof(new_space->select.offset[0])); - new_space->select.offset_changed = FALSE; - /* If the intersecting space is "all", the intersection must be equal to the * source space and the projection must be equal to the destination space */ if(src_intersect_space->select.type->type == H5S_SEL_ALL) { -- cgit v0.12