mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 20:59:06 +02:00
lazutils: fixed uninitialized access
git-svn-id: trunk@33415 -
This commit is contained in:
parent
219935fe22
commit
afb21705e9
@ -709,7 +709,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
// Process E5 to avoid stopping on chinese chars
|
// Process E5 to avoid stopping on chinese chars
|
||||||
#$E5: if (c2 = #$BC) and (c3 in [#$A1..#$BA]) then Break;
|
#$E5: if (c2 = #$BC) and (InStr[2] in [#$A1..#$BA]) then Break;
|
||||||
// Others are too complex, better not to pre-inspect them
|
// Others are too complex, better not to pre-inspect them
|
||||||
else
|
else
|
||||||
Break;
|
Break;
|
||||||
|
Loading…
Reference in New Issue
Block a user