diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2007-07-31 16:53:33 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2007-07-31 16:53:33 (GMT) |
commit | 32180b2b70ee3b3cdf3291de54c2b71725852395 (patch) | |
tree | 15d0a768d4e1e37ada60a325175f59d59624be5c /src/H5Dio.c | |
parent | 565e1904fbffa90199ff08be5c29645019520a76 (diff) | |
download | hdf5-32180b2b70ee3b3cdf3291de54c2b71725852395.zip hdf5-32180b2b70ee3b3cdf3291de54c2b71725852395.tar.gz hdf5-32180b2b70ee3b3cdf3291de54c2b71725852395.tar.bz2 |
[svn-r14031] Bug fix. Chunk address wasn't passed into some I/O functions in H5D_chunk_read and H5D_chunk_write. Tested only on liberty because it's a simple change.
Diffstat (limited to 'src/H5Dio.c')
-rw-r--r-- | src/H5Dio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dio.c b/src/H5Dio.c index 7472921..6e75a93 100644 --- a/src/H5Dio.c +++ b/src/H5Dio.c @@ -1550,7 +1550,7 @@ H5D_chunk_read(H5D_io_info_t *io_info, hsize_t nelmts, smine_nelmts, dxpl_cache, tconv_buf/*out*/); } else { n = H5D_select_fgath(io_info, chunk_info->fspace, &file_iter, smine_nelmts, - (haddr_t)0, NULL, tconv_buf/*out*/); + chunk_addr, NULL, tconv_buf/*out*/); } #ifdef H5S_DEBUG @@ -1983,7 +1983,7 @@ H5D_chunk_write(H5D_io_info_t *io_info, hsize_t nelmts, smine_nelmts, dxpl_cache, bkg_buf/*out*/); } else { n = H5D_select_fgath(io_info, chunk_info->fspace, &bkg_iter, smine_nelmts, - (haddr_t)0, NULL, bkg_buf/*out*/); + chunk_addr, NULL, bkg_buf/*out*/); } #ifdef H5S_DEBUG |