 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Dennis Guest
|
Posted: Thu Feb 17, 2005 8:05 am Post subject: Re: Fastcode MM B&V 0.16 |
|
|
Hi
Did we agree that all MM's must pass this one?
function Validate15: boolean;
var
Ptr: Pointer;
begin
{Allocate a block}
GetMem(Ptr, 10);
{Free it}
FreeMem(Ptr);
{Try to free it again and see whether the MM catches the error}
try
FreeMem(Ptr);
Result := False;
except
Result := True;
end;
end;
Regards
Dennis
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|