mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 07:19:18 +02:00
SynEdit: fixed an uninitialized value
git-svn-id: trunk@36118 -
This commit is contained in:
parent
e6bcaf91a3
commit
9fea72270b
@ -3202,7 +3202,7 @@ function TRegExpr.MatchPrim (prog : PRegExprChar) : boolean;
|
|||||||
// If it could work, try it.
|
// If it could work, try it.
|
||||||
if (nextch = #0) or (reginput^ = nextch) then begin
|
if (nextch = #0) or (reginput^ = nextch) then begin
|
||||||
{$IFDEF ComplexBraces}
|
{$IFDEF ComplexBraces}
|
||||||
System.Move (LoopStack, SavedLoopStack, SizeOf (LoopStack)); //###0.925
|
System.Move (LoopStack, SavedLoopStack{%H-}, SizeOf (LoopStack)); //###0.925
|
||||||
SavedLoopStackIdx := LoopStackIdx;
|
SavedLoopStackIdx := LoopStackIdx;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
if MatchPrim (next) then begin
|
if MatchPrim (next) then begin
|
||||||
|
Loading…
Reference in New Issue
Block a user