From fb88136170148d1642c79d3ca06d6401891146c1 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Tue, 6 Aug 2019 20:11:47 +0300 Subject: [PATCH] Fix an uninitialized variable --- source/programcompiler.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/programcompiler.cpp b/source/programcompiler.cpp index f30ccfa6..4c08a0c1 100644 --- a/source/programcompiler.cpp +++ b/source/programcompiler.cpp @@ -352,6 +352,7 @@ void ProgramCompiler::BlockModifier::visit(Block &block) ProgramCompiler::Formatter::Formatter(): + source_index(0), source_line(1), indent(0), parameter_list(false) -- 2.43.0