From 83d6218842497ac38b3dd8fe993d36c7d489d789 Mon Sep 17 00:00:00 2001 From: Jonas Maebe Date: Sat, 13 Jul 2002 07:17:15 +0000 Subject: [PATCH] * fixed memory leak reported by Sergey Korshunoff --- compiler/paramgr.pas | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/compiler/paramgr.pas b/compiler/paramgr.pas index bd576c70b4..0e10795eac 100644 --- a/compiler/paramgr.pas +++ b/compiler/paramgr.pas @@ -126,11 +126,16 @@ unit paramgr; end; end; +finalization + paramanager.free; end. { $Log$ - Revision 1.1 2002-07-11 14:41:28 florian + Revision 1.2 2002-07-13 07:17:15 jonas + * fixed memory leak reported by Sergey Korshunoff + + Revision 1.1 2002/07/11 14:41:28 florian * start of the new generic parameter handling }