Share

Delphi Web Utils

Code

Programming Languages: Delphi/Kylix, Object Pascal

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

Repositories

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

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

Show:

What's happening?

  • Memory Leak

    function TJSONObject.toString(indentFactor, indent: integer): string; This function has a line: _keys := keys(); The _keys not free until the function exit. Please add a try .. finally _keys.Free end; for this function. The line: key := x.nextValue().toString(); will cause a memory leak, too. Please write in this way: with x.nextValue() do begin key...

    2009-11-12 14:54:31 UTC by creationzy

Our Numbers