You've already forked lazarus-ccr
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:
@ -1490,7 +1490,7 @@ end;
|
||||
|
||||
constructor TPropInfoReferenceList.Create();
|
||||
begin
|
||||
FList := TObjectList.Create(False);
|
||||
FList := TObjectList.Create(True);
|
||||
end;
|
||||
|
||||
destructor TPropInfoReferenceList.Destroy();
|
||||
|
Reference in New Issue
Block a user