SynEdit: fixed an uninitialized value

git-svn-id: trunk@36118 -
This commit is contained in:
martin 2012-03-17 14:24:18 +00:00
parent e6bcaf91a3
commit 9fea72270b

View File

@ -3202,7 +3202,7 @@ function TRegExpr.MatchPrim (prog : PRegExprChar) : boolean;
// If it could work, try it.
if (nextch = #0) or (reginput^ = nextch) then begin
{$IFDEF ComplexBraces}
System.Move (LoopStack, SavedLoopStack, SizeOf (LoopStack)); //###0.925
System.Move (LoopStack, SavedLoopStack{%H-}, SizeOf (LoopStack)); //###0.925
SavedLoopStackIdx := LoopStackIdx;
{$ENDIF}
if MatchPrim (next) then begin