From: Nando D. <na...@us...> - 2005-04-06 11:04:57
|
Update of /cvsroot/instantobjects/Source/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv579/Core Modified Files: InstantPersistence.pas Log Message: fixed memory leak in TInstantCache Index: InstantPersistence.pas =================================================================== RCS file: /cvsroot/instantobjects/Source/Core/InstantPersistence.pas,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** InstantPersistence.pas 5 Apr 2005 00:45:14 -0000 1.33 --- InstantPersistence.pas 6 Apr 2005 11:04:43 -0000 1.34 *************** *** 26,30 **** * Contributor(s): * Carlo Barazzetta, Andrea Petrelli, Nando Dessena, Steven Mitchell, ! * Joao Morais, Cisar Coll * * ***** END LICENSE BLOCK ***** *) --- 26,30 ---- * Contributor(s): * Carlo Barazzetta, Andrea Petrelli, Nando Dessena, Steven Mitchell, ! * Joao Morais, Cesar Coll * * ***** END LICENSE BLOCK ***** *) *************** *** 9233,9237 **** Node := Enumerator.Next; end; ! except Enumerator.Free; end; --- 9233,9237 ---- Node := Enumerator.Next; end; ! finally Enumerator.Free; end; |