diff --git a/components/lazdebuggers/lazdebuggerlldb/lldbinstructions.pas b/components/lazdebuggers/lazdebuggerlldb/lldbinstructions.pas index 47e25ef42a..a4e56c4982 100644 --- a/components/lazdebuggers/lazdebuggerlldb/lldbinstructions.pas +++ b/components/lazdebuggers/lazdebuggerlldb/lldbinstructions.pas @@ -652,12 +652,12 @@ end; function TLldbInstructionProcessLaunch.ProcessInputFromDbg(const AData: String ): Boolean; begin - Result := True; if StrStartsWith(AData, 'Process ') and (pos(' launched:', AData) > 8) then begin SetContentReceieved; end else Result := inherited; + Result := True; // Ignore any "process stopped", before "launched" end; constructor TLldbInstructionProcessLaunch.Create();