1
1

Delte the attribute on the correct object.

This commit was SVN r1728.
Этот коммит содержится в:
George Bosilca 2004-07-14 19:33:07 +00:00
родитель 768006f867
Коммит 81feeca5ed

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

@ -589,11 +589,11 @@ int ompi_comm_free ( ompi_communicator_t **comm )
{ {
/* Release attributes */ /* Release attributes */
ompi_attr_delete_all ( COMM_ATTR, comm, (*comm)->c_keyhash ); ompi_attr_delete_all ( COMM_ATTR, (*comm), (*comm)->c_keyhash );
OBJ_RELEASE((*comm)->c_keyhash); OBJ_RELEASE((*comm)->c_keyhash);
/* Release the communicator */ /* Release the communicator */
OBJ_RELEASE ( *comm ); OBJ_RELEASE ( (*comm) );
*comm = MPI_COMM_NULL; *comm = MPI_COMM_NULL;
return OMPI_SUCCESS; return OMPI_SUCCESS;