1
1

Merge pull request #1066 from rhc54/topic/alloc

Release the allocator list items from the list before destructing
Этот коммит содержится в:
rhc54 2015-10-23 13:54:22 -07:00
родитель 140cf90e3e 43e0c5bfef
Коммит 39cfdbbdad

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

@ -359,6 +359,10 @@ int mca_allocator_basic_compact(mca_allocator_base_module_t * mem)
int mca_allocator_basic_finalize(mca_allocator_base_module_t * base)
{
mca_allocator_basic_module_t* module = (mca_allocator_basic_module_t*)base;
// clear the list as we don't own these bits
while (NULL != opal_list_remove_first(&module->seg_list)) {
continue;
}
OBJ_DESTRUCT(&module->seg_list);
OBJ_DESTRUCT(&module->seg_lock);
OBJ_DESTRUCT(&module->seg_descriptors);