Fixed segfault in osm_destroy() when hop_weights_file,
port_search_ordering_file or io_guid_file are configured.

The segfault introduced by d71a924736707400bed47a3c69395cf864c970bb.

Signed-off-by: Alex Netes <ale...@mellanox.com>
---
 opensm/main.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/opensm/main.c b/opensm/main.c
index 3edc52f..c75d220 100644
--- a/opensm/main.c
+++ b/opensm/main.c
@@ -724,13 +724,13 @@ int main(int argc, char *argv[])
                        break;
 
                case 'w':
-                       opt.hop_weights_file = optarg;
+                       SET_STR_OPT(opt.hop_weights_file, optarg);
                        printf(" Hop Weights File = %s\n",
                               opt.hop_weights_file);
                        break;
 
                case 'O':
-                       opt.port_search_ordering_file = optarg;
+                       SET_STR_OPT(opt.port_search_ordering_file, optarg);
                        printf(" Port Search Ordering/Dimension Ports File = 
%s\n",
                               opt.port_search_ordering_file);
                        break;
@@ -959,7 +959,7 @@ int main(int argc, char *argv[])
                        break;
 
                case 'G':
-                       opt.io_guid_file = optarg;
+                       SET_STR_OPT(opt.io_guid_file, optarg);
                        printf(" I/O Node Guid File: %s\n", opt.io_guid_file);
                        break;
                case 11:
-- 
1.7.1

-- 

-- Alex
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to