mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-24 07:31:09 +02:00
Fix crash in dbg-console, if dbg not active. issue #21712
git-svn-id: trunk@36795 -
This commit is contained in:
parent
8100795427
commit
c2fa27acf1
@ -2321,7 +2321,8 @@ end;
|
||||
|
||||
procedure TDebugManager.DoSendConsoleInput(AText: String);
|
||||
begin
|
||||
FDebugger.SendConsoleInput(AText);
|
||||
if FDebugger <> nil then
|
||||
FDebugger.SendConsoleInput(AText);
|
||||
end;
|
||||
|
||||
procedure TDebugManager.ProcessCommand(Command: word; var Handled: boolean);
|
||||
|
Loading…
Reference in New Issue
Block a user