diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2010-10-18 20:46:08 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2010-10-18 20:46:08 (GMT) |
commit | 8cc44e86a3bad7913975d1f5e87323c9909aa4bb (patch) | |
tree | 73f18a44c7097a4fb472dfc5d1c27e3a90266fea /src/H5Faccum.c | |
parent | f527b1a512ea4b571e22e9efee054d4781afcbc0 (diff) | |
download | hdf5-8cc44e86a3bad7913975d1f5e87323c9909aa4bb.zip hdf5-8cc44e86a3bad7913975d1f5e87323c9909aa4bb.tar.gz hdf5-8cc44e86a3bad7913975d1f5e87323c9909aa4bb.tar.bz2 |
[svn-r19623] Purpose:
- Fix a bug in each of the metadata accumulator source and test code
Description:
- In accum.c test file, switch dxpl_id used in H5F_accum_*
function calls to H5P_DATASET_XFER_DEFAULT (instead of
H5AC_dxpl_id), to fix compilation on windows.
- Changed boundary checking from <= to < when checking
if a read from disk with overlapping dirty metadata in the
accumulator has the read ending such that it aligns exactly
with the dirty accumulator (line 234 of H5Faccum.c).
Tested:
- h5committested
Diffstat (limited to 'src/H5Faccum.c')
-rw-r--r-- | src/H5Faccum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Faccum.c b/src/H5Faccum.c index 6c9eb67..c89ff33 100644 --- a/src/H5Faccum.c +++ b/src/H5Faccum.c @@ -231,7 +231,7 @@ H5F_accum_read(const H5F_t *f, hid_t dxpl_id, H5FD_mem_t type, haddr_t addr, dirty_off = 0; /* Check for read ending within dirty region */ - if(H5F_addr_le(addr + size, dirty_loc + f->shared->accum.dirty_len)) + if(H5F_addr_lt(addr + size, dirty_loc + f->shared->accum.dirty_len)) overlap_size = (size_t)((addr + size) - buf_off); else /* Access covers whole dirty region */ overlap_size = f->shared->accum.dirty_len; |