From cc6020505701c97c7feeedf9bd41abf1bddb54a2 Mon Sep 17 00:00:00 2001 From: Gianluigi Tiesi Date: Tue, 5 Apr 2011 19:45:27 +0200 Subject: strpool: initialize i->suffix_of to NULL https://bugs.freedesktop.org/show_bug.cgi?id=28772 --- strpool.c | 1 + 1 file changed, 1 insertion(+) diff --git a/strpool.c b/strpool.c index 27595d3..c326fc2 100644 --- a/strpool.c +++ b/strpool.c @@ -435,6 +435,7 @@ static int parse(FILE *in, const char *fname, struct item **rfirst, char **remai rl = 0; i->next = NULL; + i->suffix_of = NULL; if (last) last->next = i; -- cgit