Fix crash in dbg-console, if dbg not active. issue #21712

git-svn-id: trunk@36795 -
This commit is contained in:
martin 2012-04-15 13:36:30 +00:00
parent 8100795427
commit c2fa27acf1

View File

@ -2321,6 +2321,7 @@ end;
procedure TDebugManager.DoSendConsoleInput(AText: String);
begin
if FDebugger <> nil then
FDebugger.SendConsoleInput(AText);
end;