Menu

#2 Memory Leak

open
nobody
None
5
2009-11-12
2009-11-12
Yi Zhang
No

TScope class in FxExpr.pas has element FUses:TUseList . It can create a TUseList , but never free it.
So, this class should have a destructor to free FUses:

destructor TScope.Destroy;
begin
FreeAndNil(FUses); //By creation_zy
inherited;
end;

Discussion


Log in to post a comment.

MongoDB Logo MongoDB