1
1

check for null pointer before calling free

This commit was SVN r1826.
Этот коммит содержится в:
Tim Woodall 2004-07-30 20:45:11 +00:00
родитель 90de82789e
Коммит c37b1629f8

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

@ -164,8 +164,10 @@ int mca_ptl_tcp_module_close(void)
mca_ptl_tcp_module.tcp_recv_frags.super.ompi_list_length); mca_ptl_tcp_module.tcp_recv_frags.super.ompi_list_length);
} }
free(mca_ptl_tcp_module.tcp_if_include); if(NULL != mca_ptl_tcp_module.tcp_if_include)
free(mca_ptl_tcp_module.tcp_if_exclude); free(mca_ptl_tcp_module.tcp_if_include);
if(NULL != mca_ptl_tcp_module.tcp_if_exclude)
free(mca_ptl_tcp_module.tcp_if_exclude);
if (NULL != mca_ptl_tcp_module.tcp_ptls) if (NULL != mca_ptl_tcp_module.tcp_ptls)
free(mca_ptl_tcp_module.tcp_ptls); free(mca_ptl_tcp_module.tcp_ptls);