mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-23 17:51:37 +02:00
- removed unnecessary string copy form tppufile.getstring
git-svn-id: trunk@15459 -
This commit is contained in:
parent
293d51a277
commit
25561d0f71
@ -766,18 +766,15 @@ end;
|
||||
|
||||
|
||||
function tppufile.getstring:string;
|
||||
var
|
||||
s : string;
|
||||
begin
|
||||
s[0]:=chr(getbyte);
|
||||
if entryidx+length(s)>entry.size then
|
||||
result[0]:=chr(getbyte);
|
||||
if entryidx+length(result)>entry.size then
|
||||
begin
|
||||
error:=true;
|
||||
exit;
|
||||
end;
|
||||
ReadData(s[1],length(s));
|
||||
getstring:=s;
|
||||
inc(entryidx,length(s));
|
||||
ReadData(result[1],length(result));
|
||||
inc(entryidx,length(result));
|
||||
end;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user