From: Dan Ben Yosef <[email protected]> Fix resource leak after guid validation ("subn_validate_g2m")
Signed-off-by: Dan Ben Yosef <[email protected]> Reviewed-by: Vladimir Koushnir <[email protected]> --- opensm/osm_subnet.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/opensm/osm_subnet.c b/opensm/osm_subnet.c index db8c2a0..77e486a 100644 --- a/opensm/osm_subnet.c +++ b/opensm/osm_subnet.c @@ -966,6 +966,7 @@ static void subn_validate_g2m(osm_subn_t *p_subn) "guid:0x%016" PRIx64 "\n", p_item->guid); } + free(p_item); } Exit: -- 1.7.8.2 -- 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
