[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:
Quincey Koziol 2003-05-08 08:06:15 -05:00
parent ae1be622b9
commit 55dbd8d92a

View File

@ -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; ) {