mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-30 21:40:21 +02:00
+ Fix from Mattias Gaertner, closes memory leak
This commit is contained in:
parent
44f26523e6
commit
10d28cc837
@ -1171,6 +1171,7 @@ begin
|
||||
GlobalFixupList.Free;
|
||||
GlobalFixupList := nil;
|
||||
GlobalLists.Free;
|
||||
ComponentPages.Free;
|
||||
{!!!: GlobalNameSpace.Free;
|
||||
GlobalNameSpace := nil;}
|
||||
end;
|
||||
@ -1190,7 +1191,10 @@ end;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.11 2002-12-02 12:04:07 sg
|
||||
Revision 1.12 2003-04-19 14:29:25 michael
|
||||
+ Fix from Mattias Gaertner, closes memory leak
|
||||
|
||||
Revision 1.11 2002/12/02 12:04:07 sg
|
||||
* Fixed handling of zero-length strings (classes.inc: When converting
|
||||
empty strings from text forms to binary forms; reader.inc: When reading
|
||||
an empty string from a binary serialization)
|
||||
|
@ -113,7 +113,17 @@ type
|
||||
public
|
||||
Name: String;
|
||||
Classes: TList;
|
||||
destructor Destroy; override;
|
||||
end;
|
||||
|
||||
{ TComponentPage }
|
||||
|
||||
destructor TComponentPage.Destroy;
|
||||
begin
|
||||
Classes.Free;
|
||||
inherited Destroy;
|
||||
end;
|
||||
|
||||
var
|
||||
ComponentPages: TCollection;
|
||||
|
||||
@ -187,7 +197,10 @@ end;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.4 2002-09-07 15:15:24 peter
|
||||
Revision 1.5 2003-04-19 14:29:25 michael
|
||||
+ Fix from Mattias Gaertner, closes memory leak
|
||||
|
||||
Revision 1.4 2002/09/07 15:15:24 peter
|
||||
* old logs removed and tabs fixed
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user