mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r6831] Purpose:
Bug fix Description: New external file double-vectorized I/O routines were checking an assertion on the wrong variable (essentially a typo :-). Solution: Check correct variable. Platforms tested: FreeBSD 4.8 (sleipnir) Triple check not needed.
This commit is contained in:
parent
ae1be622b9
commit
55dbd8d92a
@ -617,7 +617,7 @@ H5O_efl_readvv(const H5O_efl_t *efl,
|
||||
|
||||
/* Check args */
|
||||
assert (efl && efl->nused>0);
|
||||
assert (buf);
|
||||
assert (_buf);
|
||||
|
||||
/* Work through all the sequences */
|
||||
for(u=*dset_curr_seq, v=*mem_curr_seq; u<dset_max_nseq && v<mem_max_nseq; ) {
|
||||
@ -696,7 +696,7 @@ H5O_efl_writevv(const H5O_efl_t *efl,
|
||||
|
||||
/* Check args */
|
||||
assert (efl && efl->nused>0);
|
||||
assert (buf);
|
||||
assert (_buf);
|
||||
|
||||
/* Work through all the sequences */
|
||||
for(u=*dset_curr_seq, v=*mem_curr_seq; u<dset_max_nseq && v<mem_max_nseq; ) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user