- do not set the parameter to nil in strings.strdispose, because it's not a var

parameter and the operation is therefore useless

git-svn-id: trunk@32025 -
This commit is contained in:
nickysn 2015-10-12 14:28:46 +00:00
parent accf3a6150
commit 385f0d4ee8

View File

@ -155,10 +155,7 @@ implementation
begin
if p<>nil then
begin
freemem(p);
p:=nil;
end;
freemem(p);
end;
end.