Fix a memory leak in the RDMA one-sided component. Thanks to Victor Vysotskiy
for letting us know about this one. This commit was SVN r27883.
Этот коммит содержится в:
родитель
8649b5eece
Коммит
407714a85a
@ -69,6 +69,9 @@ ompi_osc_rdma_module_free(ompi_win_t *win)
|
|||||||
if (NULL != module->m_sc_remote_active_ranks) {
|
if (NULL != module->m_sc_remote_active_ranks) {
|
||||||
free(module->m_sc_remote_active_ranks);
|
free(module->m_sc_remote_active_ranks);
|
||||||
}
|
}
|
||||||
|
if (NULL != module->m_pending_buffers) {
|
||||||
|
free(module->m_pending_buffers);
|
||||||
|
}
|
||||||
if (NULL != module->m_fence_coll_counts) {
|
if (NULL != module->m_fence_coll_counts) {
|
||||||
free(module->m_fence_coll_counts);
|
free(module->m_fence_coll_counts);
|
||||||
}
|
}
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user