Skip to content

Commit e3a7cbe

Browse files
committed
Use correct buffer release macro
The buffer being released is a PMIx data buffer and not an OMPI object Signed-off-by: Ralph Castain <[email protected]>
1 parent 6a8b293 commit e3a7cbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/communicator/comm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1653,7 +1653,7 @@ int ompi_comm_get_rprocs ( ompi_communicator_t *local_comm,
16531653
#endif
16541654
goto err_exit;
16551655
}
1656-
OBJ_RELEASE(sbuf);
1656+
PMIX_DATA_BUFFER_RELEASE(sbuf);
16571657
}
16581658

16591659
/* broadcast name list to all proceses in local_comm */

0 commit comments

Comments
 (0)