1
1

If there is no datatype attached to the convertor there is nothing to release. This bug

happens only with the 2 predefined convertors ...

This commit was SVN r6377.
Этот коммит содержится в:
George Bosilca 2005-07-07 23:03:19 +00:00
родитель 8dea323088
Коммит d796186911

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

@ -46,7 +46,7 @@ inline int ompi_convertor_cleanup( ompi_convertor_t* convertor )
convertor->stack_size = 0;
}
if( !(CONVERTOR_CLONE & convertor->flags) )
OBJ_RELEASE( datatype );
if( NULL != datatype ) OBJ_RELEASE( datatype );
convertor->pDesc = NULL;
return OMPI_SUCCESS;
}