1
1

Merge pull request #4772 from ggouaillardet/topic/osc_sm_free

osc/sm: fix the osc_free callback
Этот коммит содержится в:
Gilles Gouaillardet 2018-01-31 17:06:36 +09:00 коммит произвёл GitHub
родитель 0c5bb999ed 34b45cc879
Коммит 9dcb7ab317
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -5,7 +5,7 @@
* reserved.
* Copyright (c) 2014 Intel, Inc. All rights reserved.
* Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2015-2017 Research Organization for Information Science
* Copyright (c) 2015-2018 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2017 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
@ -485,7 +485,9 @@ ompi_osc_sm_free(struct ompi_win_t *win)
} else {
free(module->node_states);
free(module->global_state);
free(module->bases[0]);
if (NULL != module->bases) {
free(module->bases[0]);
}
}
free(module->disp_units);
free(module->outstanding_locks);