summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-12-14 04:26:28 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-12-14 04:26:28 (GMT)
commit61ae6864a345f7b41762771d5525d437cd828285 (patch)
tree828499f53e0a319ec9dc9db2972dd5f7a25859be
parent291978831e6bbeb0a3163eba99af9841f20519d8 (diff)
downloadhdf5-61ae6864a345f7b41762771d5525d437cd828285.zip
hdf5-61ae6864a345f7b41762771d5525d437cd828285.tar.gz
hdf5-61ae6864a345f7b41762771d5525d437cd828285.tar.bz2
[svn-r9666] Purpose:
Bug fix Description: Bring back chunked dataset hyperslab I/O bug fix from development branch Platforms tested: None, just eyeballed, very minor
-rw-r--r--src/H5Dio.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c
index d74fa83..f96d26e 100644
--- a/src/H5Dio.c
+++ b/src/H5Dio.c
@@ -2774,6 +2774,7 @@ H5D_create_chunk_file_map_hyper(fm_map *fm)
do {
/* Reset current dimension's location to 0 */
coords[curr_dim]=start_coords[curr_dim]; /*lint !e771 The start_coords will always be initialized */
+ end[curr_dim]=(coords[curr_dim]+(hssize_t)fm->chunk_dim[curr_dim])-1;
/* Decrement current dimension */
curr_dim--;