1
1

Take out the destructor code I added to ompi_list - may be causing some problems in some pre-existing code, and we have more important issues to deal with for now!

This commit was SVN r2457.
Этот коммит содержится в:
Ralph Castain 2004-09-02 19:02:16 +00:00
родитель b025e66d7e
Коммит c27d1eeb80

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

@ -71,15 +71,15 @@ static void ompi_list_construct(ompi_list_t *list)
*/
static void ompi_list_destruct(ompi_list_t *list)
{
ompi_list_item_t *item;
/* ompi_list_item_t *item; */
if (NULL != list) {
while (NULL != (item = ompi_list_remove_first(list))) {
OBJ_RELEASE(item);
}
/* if (NULL != list) { */
/* while (NULL != (item = ompi_list_remove_first(list))) { */
/* OBJ_RELEASE(item); */
/* } */
ompi_list_construct(list);
}
/* } */
}