summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-01-21 22:32:10 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-01-21 22:32:10 (GMT)
commitd174e73c3f3bc26d96c70c2f3864d39370240e41 (patch)
treee409458236fea0260db38f360d580ea1e11093fb /src
parent06e0e761de3a62a6bac144934624c8d0397faf14 (diff)
downloadhdf5-d174e73c3f3bc26d96c70c2f3864d39370240e41.zip
hdf5-d174e73c3f3bc26d96c70c2f3864d39370240e41.tar.gz
hdf5-d174e73c3f3bc26d96c70c2f3864d39370240e41.tar.bz2
[svn-r1943] Fixed bug which was not allowing the "start_point" parameter to
H5Sget_select_elem_pointlist to actually get used. It was always returning a list of points selected which started with the beginning of the list of points.
Diffstat (limited to 'src')
-rw-r--r--src/H5Sselect.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/H5Sselect.c b/src/H5Sselect.c
index 1c4e4f3..774fdce 100644
--- a/src/H5Sselect.c
+++ b/src/H5Sselect.c
@@ -1451,7 +1451,6 @@ H5S_get_select_elem_pointlist(H5S_t *space, hsize_t startpoint, hsize_t numpoint
} /* end while */
/* Iterate through the node, copying each hyperslab's information */
- node=space->select.sel_info.pnt_lst->head;
while(node!=NULL && numpoints>0) {
HDmemcpy(buf,node->pnt,sizeof(hsize_t)*rank);
buf+=rank;