mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 19:09:23 +02:00
* r13729 was broken due to missing typecast, shame on me. Fixed.
git-svn-id: trunk@13787 -
This commit is contained in:
parent
606b7f4f80
commit
d2c3ab0730
@ -323,7 +323,7 @@ begin
|
|||||||
src := TXMLInputSource.Create(data);
|
src := TXMLInputSource.Create(data);
|
||||||
try
|
try
|
||||||
FParser.Parse(src, TXMLDocument(Doc));
|
FParser.Parse(src, TXMLDocument(Doc));
|
||||||
GC(Doc);
|
GC(TObject(Doc));
|
||||||
finally
|
finally
|
||||||
src.Free;
|
src.Free;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user