From: Dan Ben Yosef <[email protected]> Fix resource leak after neighbor validation
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 77e486a..e9024ac 100644 --- a/opensm/osm_subnet.c +++ b/opensm/osm_subnet.c @@ -1051,6 +1051,7 @@ static void subn_validate_neighbor(osm_subn_t *p_subn) "guid:0x%016" PRIx64 " port:%u\n", p_item->guid, p_item->portnum); } + 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
