mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
28 lines
464 B
ObjectPascal
28 lines
464 B
ObjectPascal
uses erroru;
|
|
|
|
procedure Test;
|
|
var
|
|
P: Pointer;
|
|
begin
|
|
P:=nil;
|
|
ReAllocMem(P, 8);
|
|
ReAllocMem(P, 0);
|
|
if P<>nil then
|
|
begin
|
|
Writeln('ReAllocMem wtih zero size does not set pointer to nil');
|
|
Writeln('Bug 813 is not yet fixed');
|
|
Halt(1);
|
|
end;
|
|
end;
|
|
|
|
var Mem : sizeuint;
|
|
begin
|
|
domem(mem);
|
|
Test;
|
|
if domem(mem)<>0 then
|
|
begin
|
|
Writeln('ReAllocMem creates emory leaks');
|
|
Writeln('Bug 812 is not yet fixed');
|
|
end;
|
|
end.
|