hi Leute,
mir ist neulich ein bug in Delphi (6+7) aufgefallen (bei uall's ring0
unit) der dazu führt das Delphi total abstürzt. Also ich zeig mal ein Beispiel:
Delphi-Quellcode:
// dieser record muss in z.b. Unit1 deklariert werden, unter TForm usw.
type
PMyRecord = ^PMyRecord; // das ist das Problem ..
TMyrecord = packed record
Value1: PChar;
Value2: Integer;
Value3: ShortString;
Value4: Cardinal;
Value5: Pointer;
end;
ruft man nun z.B. "Unit1." auf sollte normalerweise die Box (wo alle Befehle, Klassen stehen) kommen. Jedoch kommt es das erste mal zu einer Fehlermeldung:
Zitat:
---------------------------
Danger
---------------------------
Stack overflow - save your work and restart Delphi.
---------------------------
OK
---------------------------
Tippt man das jetzt erneut ein, und die Box normalweiße anzeigt werden sollte, stürzt Delphi dabei total ab und muss neu gestartet werden.
Ich bin jedoch nicht sicher ob der Fehler noch unter Delphi 2005 und 2006 noch dabei ist.