mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-11 16:01:00 +08:00
[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.
This commit is contained in:
parent
565e1904fb
commit
32180b2b70
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user