From 0880a04a185fbb701aa4ea56cc305c92934da26f Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 25 May 2011 16:11:34 +0200 Subject: [PATCH] isl_polynomial.c: avoid use of an unitialized variable on an error path Signed-off-by: Sven Verdoolaege --- isl_polynomial.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isl_polynomial.c b/isl_polynomial.c index 52dd7ae..6f3be32 100644 --- a/isl_polynomial.c +++ b/isl_polynomial.c @@ -798,7 +798,7 @@ __isl_give struct isl_upoly *isl_upoly_mul_rec(__isl_take struct isl_upoly *up1, { struct isl_upoly_rec *rec1; struct isl_upoly_rec *rec2; - struct isl_upoly_rec *res; + struct isl_upoly_rec *res = NULL; int i, j; int size; -- 2.7.4