From 75326263df8dce8e39d0484ffe39982138801075 Mon Sep 17 00:00:00 2001 From: "Sven M. Hallberg" <pesco@khjk.org> Date: Sun, 12 May 2013 00:20:42 +0200 Subject: [PATCH] silence a warning when compiling with NDEBUG --- src/parsers/ignoreseq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parsers/ignoreseq.c b/src/parsers/ignoreseq.c index d7f4743b..95e54b89 100644 --- a/src/parsers/ignoreseq.c +++ b/src/parsers/ignoreseq.c @@ -64,7 +64,7 @@ static bool is_isValidCF(void *env) { static bool h_svm_action_ignoreseq(HArena *arena, HSVMContext *ctx, void* env) { HIgnoreSeq *seq = (HIgnoreSeq*)env; - HParsedToken* save; + HParsedToken* save = NULL; // We can assume that each subitem generated at most one item on the // stack. assert(seq->len >= 1); -- GitLab