Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I discovered a strange problem in Delphi XE concerning a generic type def. I created a derivative of TObjectList that include a number of classes (in example fIndex). Then I create a descendant class TMyButtonlist that contains a link to an owner. The object fIndex is not created, so must be nil on destruction. But when I set the fOwer variable, the fIndex variable gets the same pointer, and crashes at destruction.

type
  TMyObjectList<T:class> = class(TObjectList<T>)
  private
    fIndex:TStringList;
  public
    destructor Destroy; override;
  end;

  TMyButtonList = class(TMyObjectList<TButton>)
  private
    Owner:TObject;
  end;

destructor TMyObjectList<T>.Destroy;
begin
  fIndex.Free;
  inherited;
end;

procedure TMainForm.btnClick(Sender: TObject);
var
  Buttonlist:TMyButtonList;
begin
  Buttonlist:=TMyButtonList.Create;
  Buttonlist.Owner := Self;
  ButtonList.Free;
end;
share|improve this question
does it happen only in XE? i've test in D2010, no problems found. – teran Apr 24 '12 at 9:55
1  
And what is your question? Bug reports should go to Quality Central, not Stack Overflow. – Rob Kennedy Apr 24 '12 at 13:00
2  
That bug has been fixed for XE2, see qc.embarcadero.com/wc/qcmain.aspx?d=88267 – Stefan Glienke Apr 24 '12 at 13:37
@teran: Maybe he hasn't applied the latest update. – menjaraz Apr 24 '12 at 14:31
2  
Although the before mentioned QC entry is marked as fixed in some build that is before XE Update 1 Ramons code does not run in XE Update 1. In 2010 and XE2 Update 4 it does. Also check qc.embarcadero.com/wc/qcmain.aspx?d=98229 – Stefan Glienke Apr 24 '12 at 16:42

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.