My custom control has pointers to parent but I don't know how to free those pointers in destructor.
variables:
{Pointers}
Form: TForm;
GeneralPointer: Pointer;
Frame: ^TImage;
the constructor:
constructor TViOS.Create(var ImageOutput: TImage);
begin
inherited Create;
Form := TForm(GetParentForm(TControl(ImageOutput)));
GeneralPointer := Addr(ImageOutput);
Frame := GeneralPointer;
...
nilin the destructor? – James L. Oct 6 '12 at 6:38