>From 032d4100467cb1b3e1ed5dc81911aaa704f709dc Mon Sep 17 00:00:00 2001 From: Ammar Haj Hamad <[email protected]> Date: Mon, 25 Mar 2013 12:41:35 +0200 Subject: [PATCH] opensm: fix dfsssp uninitialized value
in dfsssp_context_create dfsssp_ctx->adj_list_size is not initialized. and might cause segmentation fault when destroying the routing engine. Signed-off-by: Ammar Haj Hamad <[email protected]> --- opensm/osm_ucast_dfsssp.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/opensm/osm_ucast_dfsssp.c b/opensm/osm_ucast_dfsssp.c index 803d0e1..01ad03b 100644 --- a/opensm/osm_ucast_dfsssp.c +++ b/opensm/osm_ucast_dfsssp.c @@ -2240,6 +2240,7 @@ static dfsssp_context_t *dfsssp_context_create(osm_opensm_t * p_osm, dfsssp_ctx->routing_type = routing_type; dfsssp_ctx->p_mgr = (osm_ucast_mgr_t *) & (p_osm->sm.ucast_mgr); dfsssp_ctx->adj_list = NULL; + dfsssp_ctx->adj_list_size = 0; dfsssp_ctx->srcdest2vl_table = NULL; } else { OSM_LOG(p_osm->sm.ucast_mgr.p_log, OSM_LOG_ERROR, -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
