1
1

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.
Этот коммит содержится в:
Brian Barrett 2013-01-21 22:45:37 +00:00
родитель 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);
} }