From 621f992afada1af042c964b340e419d3986ddefc Mon Sep 17 00:00:00 2001 From: peter Date: Sun, 23 Nov 2003 17:23:49 +0000 Subject: [PATCH] * fixed memleak with derefdata --- compiler/fmodule.pas | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/compiler/fmodule.pas b/compiler/fmodule.pas index d0557bfffe..5d401b4ac3 100644 --- a/compiler/fmodule.pas +++ b/compiler/fmodule.pas @@ -465,6 +465,7 @@ implementation {$ifdef MEMDEBUG} d:=tmemdebug.create(modulename^+' - symtable'); {$endif} + derefdata.free; if assigned(globalsymtable) then globalsymtable.free; if assigned(localsymtable) then @@ -690,7 +691,10 @@ implementation end. { $Log$ - Revision 1.41 2003-10-23 14:44:07 peter + Revision 1.42 2003-11-23 17:23:49 peter + * fixed memleak with derefdata + + Revision 1.41 2003/10/23 14:44:07 peter * splitted buildderef and buildderefimpl to fix interface crc calculation