diff --git a/VERSION b/VERSION index 9285b0db..7d3b3ee0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -a12-189-g0ba931cbed+1 \ No newline at end of file +a12-190-gcc6dd58778+1 \ No newline at end of file diff --git a/common/src/stringlist.c b/common/src/stringlist.c index 24bd4a50..7403ba6e 100644 --- a/common/src/stringlist.c +++ b/common/src/stringlist.c @@ -33,9 +33,10 @@ StringList stringlist_new(bool owns_strings) { StringList sl = malloc(sizeof(struct StringList)); - sl->size = 32; - sl->count = 0; - sl->list = malloc(sizeof(char *) * sl->size); + sl->owns_strings = owns_strings; + sl->size = 32; + sl->count = 0; + sl->list = malloc(sizeof(char *) * sl->size); return sl; }