From: Alex Netes <alexne-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
To: Dale Purdy <purdy-sJ/iWh9BUns@public.gmane.org>,
Hal Rosenstock <hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>,
linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: [PATCH] opensm: fixed segfault in osm_destroy
Date: Thu, 12 Jan 2012 16:14:35 +0200 [thread overview]
Message-ID: <20120112141435.GC6571@calypso> (raw)
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 <alexne-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org>
---
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 majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next reply other threads:[~2012-01-12 14:14 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-12 14:14 Alex Netes [this message]
2012-01-12 17:07 ` [PATCH] opensm: fixed segfault in osm_destroy Dale Purdy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120112141435.GC6571@calypso \
--to=alexne-vpraknaxozvwk0htik3j/w@public.gmane.org \
--cc=hal-VPRAkNaXOzVWk0Htik3J/w@public.gmane.org \
--cc=linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=purdy-sJ/iWh9BUns@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox