* fixed ReturnNilIfGrowHeapFails

git-svn-id: trunk@5042 -
This commit is contained in:
Jonas Maebe 2006-10-28 18:17:34 +00:00
parent 3ab2086999
commit 64b7f00afd

View File

@ -805,7 +805,10 @@ begin
if poc=nil then if poc=nil then
begin begin
if ReturnNilIfGrowHeapFails then if ReturnNilIfGrowHeapFails then
exit begin
result := nil;
exit
end
else else
HandleError(203); HandleError(203);
end; end;