From 1b6d0ed4c29bc931acbe1b6efd0fd611b20a8666 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Fri, 19 Apr 2019 05:08:33 +0000 Subject: [PATCH] parseBits: fix regression introduced by the latest fix --- build/parsePreamble.c | 1 + 1 file changed, 1 insertion(+) diff --git a/build/parsePreamble.c b/build/parsePreamble.c index 278bbfa..aac0aef 100644 --- a/build/parsePreamble.c +++ b/build/parsePreamble.c @@ -166,6 +166,7 @@ static int parseBits(const char * s, const tokenBits tokbits, break; } + tb = NULL; for (tokenBits t = tokbits; t->name; t++) { if (t->name && !strncasecmp(t->name, s, (se-s))) { if (!t->name[se-s]) {