mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Range check error (issue 0002553)
This commit is contained in:
parent
984f4d077e
commit
eca6398e5d
1 changed files with 1 additions and 1 deletions
|
|
@ -1130,7 +1130,7 @@ var
|
|||
i, j: SizeInt;
|
||||
pc : PChar;
|
||||
begin
|
||||
pc := @StringToCheck[1];
|
||||
pc := Pointer(StringToCheck);
|
||||
for i := 1 to Length(StringToCheck) do
|
||||
begin
|
||||
for j := 1 to Length(PossibleCharacters) do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue