mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 21:49:15 +02:00
Fixed compilation after r41795
git-svn-id: trunk@41796 -
This commit is contained in:
parent
2669b68e6d
commit
c6276ab42e
@ -428,7 +428,7 @@ begin
|
|||||||
for i:=0 to High(ParamPart) do
|
for i:=0 to High(ParamPart) do
|
||||||
begin
|
begin
|
||||||
CopyLen:=ParamPart[i].Start-BufIndex;
|
CopyLen:=ParamPart[i].Start-BufIndex;
|
||||||
Move(SQL[BufIndex],NewQuery[NewQueryIndex],CopyLen);
|
System.Move(SQL[BufIndex],NewQuery[NewQueryIndex],CopyLen);
|
||||||
Inc(NewQueryIndex,CopyLen);
|
Inc(NewQueryIndex,CopyLen);
|
||||||
case ParameterStyle of
|
case ParameterStyle of
|
||||||
psInterbase : begin
|
psInterbase : begin
|
||||||
@ -454,7 +454,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
CopyLen:=Length(SQL)+1-BufIndex;
|
CopyLen:=Length(SQL)+1-BufIndex;
|
||||||
if CopyLen > 0 then
|
if CopyLen > 0 then
|
||||||
Move(SQL[BufIndex],NewQuery[NewQueryIndex],CopyLen);
|
System.Move(SQL[BufIndex],NewQuery[NewQueryIndex],CopyLen);
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
NewQuery:=SQL;
|
NewQuery:=SQL;
|
||||||
|
Loading…
Reference in New Issue
Block a user