mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 16:29:21 +02:00
* If InitDebugClient fails, do not try to write a debug-message
git-svn-id: trunk@11843 -
This commit is contained in:
parent
340844b9e0
commit
b7f07f8144
@ -86,7 +86,7 @@ begin
|
|||||||
if DebugDisabled then exit;
|
if DebugDisabled then exit;
|
||||||
try
|
try
|
||||||
If (DebugClient=Nil) then
|
If (DebugClient=Nil) then
|
||||||
InitDebugClient;
|
if InitDebugClient = false then exit;
|
||||||
if (Indent>0) then
|
if (Indent>0) then
|
||||||
Msg.Msg:=StringOfChar(' ',Indent)+Msg.Msg;
|
Msg.Msg:=StringOfChar(' ',Indent)+Msg.Msg;
|
||||||
WriteMessage(Msg);
|
WriteMessage(Msg);
|
||||||
|
Loading…
Reference in New Issue
Block a user