Fix memory leak in xsd parser ( TPropInfoReferenceList should free its items )

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@554 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
inoussa
2008-09-11 17:53:43 +00:00
parent 59640eecea
commit 5918607ca5

View File

@ -1490,7 +1490,7 @@ end;
constructor TPropInfoReferenceList.Create();
begin
FList := TObjectList.Create(False);
FList := TObjectList.Create(True);
end;
destructor TPropInfoReferenceList.Destroy();