From 32180b2b70ee3b3cdf3291de54c2b71725852395 Mon Sep 17 00:00:00 2001 From: Raymond Lu Date: Tue, 31 Jul 2007 11:53:33 -0500 Subject: [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. --- src/H5Dio.c | 4 ++-- 1 file 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 -- cgit v0.12