mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r1629] Fixed error in point selections which was incorrectly computing the offsets of
array elements for most datatypes.
This commit is contained in:
parent
cb0a0eb41e
commit
d7c00263f9
@ -526,7 +526,7 @@ H5S_point_mgath (const void *_buf, size_t elmt_size,
|
||||
for(num_gath=0; num_gath<nelmts; num_gath++) {
|
||||
if(mem_iter->pnt.elmt_left>0) {
|
||||
/* Compute the location of the point to get */
|
||||
for(i=space_ndims-1,acc=1,off=0; i>=0; i--) {
|
||||
for(i=space_ndims-1,acc=elmt_size,off=0; i>=0; i--) {
|
||||
off+=(mem_iter->pnt.curr->pnt[i]+mem_space->select.offset[i])*acc;
|
||||
acc*=mem_size[i];
|
||||
} /* end for */
|
||||
@ -608,7 +608,7 @@ H5S_point_mscat (const void *_tconv_buf, size_t elmt_size,
|
||||
for(num_scat=0; num_scat<nelmts; num_scat++) {
|
||||
if(mem_iter->pnt.elmt_left>0) {
|
||||
/* Compute the location of the point to get */
|
||||
for(i=space_ndims-1,acc=1,off=0; i>=0; i--) {
|
||||
for(i=space_ndims-1,acc=elmt_size,off=0; i>=0; i--) {
|
||||
off+=(mem_iter->pnt.curr->pnt[i]+mem_space->select.offset[i])*acc;
|
||||
acc*=mem_size[i];
|
||||
} /* end for */
|
||||
|
Loading…
x
Reference in New Issue
Block a user