On Sun, 20 May 2007, M. Utku Karataş wrote:
> Hi everyone,
>
> I am using version 2.1.1 on Linux and calling this procedure in a thread:
>
> procedure TestNullRef;
> var p: ^integer;
> begin
>p := nil;
>try
>p^ := 13; // now this should raise exc!
>ShowMessage(IntToStr(
Hi everyone,
I am using version 2.1.1 on Linux and calling this procedure in a thread:
procedure TestNullRef;
var p: ^integer;
begin
p := nil;
try
p^ := 13; // now this should raise exc!
ShowMessage(IntToStr(p^));
except
ShowMessage('TestNullRef: ' +
Exception(Excep