|
Reported by Colin Wilson; checked by Jordan Russell
There's a memory leak in THeaderControl that shows up with MemorySleuth,
etc.
It happens any time you use the THeaderControl (Win32) component.
In the THeaderControl constructor there's a line...
FImageChangeLink := TChangeLink.Create;
But the FImageChangeLink is never 'Free'd - in the destructor or anywhere
else.
Note from checker:
The amount of memory leaked appears to be 16 bytes. |