* prevent endless stack dump if an exception occured during the dump itself.

git-svn-id: trunk@1427 -
This commit is contained in:
yury 2005-10-16 17:17:50 +00:00
parent 8af13ed6ae
commit 2332eae403

View File

@ -749,6 +749,7 @@ var
caller_frame,
caller_addr : Pointer;
Begin
try
prevbp:=bp-1;
i:=0;
is_dev:=do_isdevice(textrec(f).Handle);
@ -766,6 +767,9 @@ Begin
prevbp:=bp;
bp:=caller_frame;
End;
except
{ prevent endless dump if an exception occured }
end;
End;