1
1

When we copy a convertor we should copy it's flags too. Otherwise the informations inside will

not match the flags (uninitialized).

This commit was SVN r6681.
Этот коммит содержится в:
George Bosilca 2005-07-29 00:17:02 +00:00
родитель 8e0d8a0e99
Коммит 8e1f169ffd

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

@ -661,6 +661,7 @@ ompi_convertor_copy_and_prepare_for_recv( const ompi_convertor_t* pSrcConv,
{
convertor->remoteArch = pSrcConv->remoteArch;
convertor->pFunctions = pSrcConv->pFunctions;
convertor->flags = pSrcConv->flags;
return ompi_convertor_prepare_for_recv( convertor, datatype, count, pUserBuf );
}