mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 13:39:24 +02:00
LazDebuggerFp (pure): do not crash range check
git-svn-id: trunk@44635 -
This commit is contained in:
parent
f3e4622b30
commit
8536f38448
@ -198,7 +198,7 @@ end;
|
|||||||
|
|
||||||
procedure TFpDebugDebugger.FDbgControllerProcessExitEvent(AExitCode: DWord);
|
procedure TFpDebugDebugger.FDbgControllerProcessExitEvent(AExitCode: DWord);
|
||||||
begin
|
begin
|
||||||
SetExitCode(AExitCode);
|
SetExitCode(Integer(AExitCode));
|
||||||
DoDbgEvent(ecProcess, etProcessExit, Format('Process exited with exit-code %d',[AExitCode]));
|
DoDbgEvent(ecProcess, etProcessExit, Format('Process exited with exit-code %d',[AExitCode]));
|
||||||
FreeDebugThread;
|
FreeDebugThread;
|
||||||
SetState(dsStop);
|
SetState(dsStop);
|
||||||
|
Loading…
Reference in New Issue
Block a user