Share

fxds

Code

Programming Languages: Delphi/Kylix

License: GNU Library or Lesser General Public License (LGPL)

Repositories

browse code, statistics cvs -d:pserver:anonymous@fxds.cvs.sourceforge.net:/cvsroot/fxds login

cvs -z3 -d:pserver:anonymous@fxds.cvs.sourceforge.net:/cvsroot/fxds co -P modulename

Show:

What's happening?

  • Memory Leak

    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;.

    2009-11-12 14:38:08 UTC by creationzy

Our Numbers