1
1

George --- this seems to fix a problem w/ calculating the correct offset

for contigous datatypes.

This commit was SVN r2909.
Этот коммит содержится в:
Tim Woodall 2004-10-01 20:08:39 +00:00
родитель 77460dc489
Коммит a0542dd97c

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

@ -621,7 +621,7 @@ int ompi_convertor_pack_homogeneous_contig( ompi_convertor_t* pConv,
if( pData->size == extent ) { /* that really contiguous */
if( iov[0].iov_base == NULL ) {
iov[0].iov_base = pSrc + pConv->bConverted;
iov[0].iov_base = pSrc; /* + pConv->bConverted; */
if( (pConv->bConverted + iov[0].iov_len) > length )
iov[0].iov_len = length - pConv->bConverted;
} else {