1
1

The correct number of iovec is +1 as we exit the for loop without incrementing the index.

This commit was SVN r10265.
Этот коммит содержится в:
George Bosilca 2006-06-08 21:23:01 +00:00
родитель 7804822aa8
Коммит 79829d559b

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

@ -253,7 +253,7 @@ inline int32_t ompi_convertor_unpack( ompi_convertor_t* pConv,
*max_data = pConv->bConverted - (*max_data);
return 0;
predefined_data_unpack:
*out_size = i;
*out_size = i + 1;
*max_data = pConv->bConverted - (*max_data);
pConv->bConverted = pConv->local_size;
pConv->flags |= CONVERTOR_COMPLETED;