Fix problem where if a macro's name appeared inside the macro, it would be expanded repeatedly, leading to a crash.

This is a problem introduced by the scanner changes between ORCA/C 2.1.0 and ORCA/C 2.1.1 B3.

The following examples demonstrate the problem:

#define m m
m

#define f(x) f(x)
f(a)
This commit is contained in:
Stephen Heumann 2016-12-17 22:34:21 -06:00
parent 5c81d970b5
commit d0b4b75970
1 changed files with 5 additions and 1 deletions

View File

@ -1308,7 +1308,7 @@ if macro^.parameters >= 0 then begin {find the values of the parameters}
if not gettingFileName then {put back the source stream token}
PutBackToken(token, true);
Error(12);
end;
end; {if}
end {if}
else begin
Error(13);
@ -3552,6 +3552,7 @@ var
expandEnabled: boolean; {can a token be expanded?}
i: 0..maxint; {loop/index counter}
inhibit: boolean; {inhibit macro expansion?}
lExpandMacros: boolean; {local copy of expandMacros}
lPrintMacroExpansions: boolean; {local copy of printMacroExpansions}
mPtr: macroRecordPtr; {for checking list of macros}
setLength: boolean; {is the current string a p-string?}
@ -3652,7 +3653,10 @@ if tokenList <> nil then begin {get a token put back by a macro}
token.kind := ident;
if token.kind = ident then begin
CopyString(@workString, token.name);
lExpandMacros := expandMacros;
expandMacros := false;
CheckIdentifier;
expandMacros := lExpandMacros;
end; {if}
{ dead code
if token.kind = ident then