From 189ccc07425d8639168c067321ee6870ed886806 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Fri, 25 Jun 2010 21:44:23 +0200 Subject: [PATCH] isl_map_project_out: fix error return value --- isl_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isl_map.c b/isl_map.c index 25f5500..f1dbce3 100644 --- a/isl_map.c +++ b/isl_map.c @@ -2469,7 +2469,7 @@ __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map, return map; error: isl_map_free(map); - return map; + return NULL; } /* Turn the n dimensions of type type, starting at first -- 2.7.4