From f4ee840d9ee4635304b7c12dc769b112adce9e2a Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Sun, 10 Sep 2017 00:15:35 -0500 Subject: [PATCH] Remove access to uninitialized variable. There should be no functional change. Issue reported by Kelvin Sherlock. --- Parser.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Parser.pas b/Parser.pas index e61cd81..4edc18a 100644 --- a/Parser.pas +++ b/Parser.pas @@ -1920,7 +1920,7 @@ var iPtr^.isConstant := true; iPtr^.iType := ccPointer; iPtr^.pval := 0; - iPtr^.pPlus := operator = plusch; + iPtr^.pPlus := false; iPtr^.isName := false; iPtr^.pStr := longstringPtr(expressionValue); end {if}