From 1c9abce81b6b2820100d51f6c0186fed6bc8385c Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Mon, 16 Mar 2015 11:04:29 +0100 Subject: [PATCH] iscc.c: vertices: avoid uninitialized read on error path Signed-off-by: Sven Verdoolaege --- iscc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iscc.c b/iscc.c index 9ee98dc..c045fb4 100644 --- a/iscc.c +++ b/iscc.c @@ -1468,7 +1468,7 @@ static struct isl_obj vertices(struct isl_stream *s, isl_ctx *ctx; struct isl_obj obj; struct isl_list *list = NULL; - isl_union_set *uset; + isl_union_set *uset = NULL; struct add_vertex_data data = { NULL }; obj = read_expr(s, table); -- 2.11.4.GIT