Closed GabrielOnDelphi closed 1 year ago
Two memory leaks documented. But they are annoying because everytime you shoutdown, FastMM will report a leak. To fix them add these two lines:
constructor TDataFormatClasses.Create; begin ASSERT(FDataFormatClasses = nil); inherited Create; FList := TList.Create;
RegisterExpectedMemoryLeak(FDataFormatClasses); <------- RegisterExpectedMemoryLeak(FList); <------- end;
Two memory leaks documented. But they are annoying because everytime you shoutdown, FastMM will report a leak. To fix them add these two lines:
constructor TDataFormatClasses.Create; begin ASSERT(FDataFormatClasses = nil); inherited Create; FList := TList.Create;
RegisterExpectedMemoryLeak(FDataFormatClasses); <------- RegisterExpectedMemoryLeak(FList); <------- end;