I have a next code:
type THead = packed record
znmpc: byte;
znmpcch: array [0..1] of char;
znc, zneispr, zkpd, zkps, nd: byte;
zb9, zb10, zb11, zb12, zb13, zb14, zb15: byte;
end;
procedure TForm1.FormCreate(Sender: TObject);
var
db: ^THead;
a: array [0..9] of byte;
begin
a[7] := 9;
db := @a;
ShowMessage(IntToStr(db.nd));
end;
Is this code safe? I'm worried about next thing: size of struct more than size of buffer, and i have a fear about it. The value of members of struct after nd has no meaning for me. I want to know can this code throw an exception in certain circumstances, and if so in what?