From d8b10f95b0b54cde23a629bb3dea667609a71b6c Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Fri, 30 Nov 2012 17:50:37 +0100 Subject: [PATCH] isl_affine_hull.c: equalities_in_underlying_set: plug memory leak on error path Signed-off-by: Sven Verdoolaege --- isl_affine_hull.c | 1 + 1 file changed, 1 insertion(+) diff --git a/isl_affine_hull.c b/isl_affine_hull.c index bb898361..e71bc104 100644 --- a/isl_affine_hull.c +++ b/isl_affine_hull.c @@ -1064,6 +1064,7 @@ static struct isl_basic_set *equalities_in_underlying_set( return hull; error: + isl_mat_free(T1); isl_mat_free(T2); isl_basic_set_free(bset); isl_basic_set_free(hull); -- 2.11.4.GIT