1
1

resetting the counter for the iov array has to happen outside of the if statement.

This commit was SVN r32677.
Этот коммит содержится в:
Edgar Gabriel 2014-09-07 16:30:56 +00:00
родитель e32d541c8d
Коммит 0d425e2f74

Просмотреть файл

@ -91,9 +91,9 @@ size_t mca_fbtl_posix_preadv (mca_io_ompio_file_t *fh )
}
else if ( 0 == ret_code ){
/* end of file reached, no point in continue reading; */
iov_count = 0;
break;
}
iov_count = 0;
}
if (NULL != iov) {