diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2015-09-08 20:41:38 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2015-09-08 20:41:38 (GMT) |
commit | f3da95644105e1a70f7b5246128ff542585695e5 (patch) | |
tree | 00daab220966ff82163e957a5003a78bbeb8ec9f /src/H5Sselect.c | |
parent | dceb3f1818e6884f0af429aa44862c169933a8e9 (diff) | |
download | hdf5-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/H5Sselect.c')
-rw-r--r-- | src/H5Sselect.c | 4 |
1 files changed, 0 insertions, 4 deletions
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) { |