LazDebugger, lldb: fix process launch

git-svn-id: trunk@58886 -
This commit is contained in:
martin 2018-09-06 01:45:03 +00:00
parent 362a579f9c
commit d4437e704c

View File

@ -652,12 +652,12 @@ end;
function TLldbInstructionProcessLaunch.ProcessInputFromDbg(const AData: String function TLldbInstructionProcessLaunch.ProcessInputFromDbg(const AData: String
): Boolean; ): Boolean;
begin begin
Result := True;
if StrStartsWith(AData, 'Process ') and (pos(' launched:', AData) > 8) then begin if StrStartsWith(AData, 'Process ') and (pos(' launched:', AData) > 8) then begin
SetContentReceieved; SetContentReceieved;
end end
else else
Result := inherited; Result := inherited;
Result := True; // Ignore any "process stopped", before "launched"
end; end;
constructor TLldbInstructionProcessLaunch.Create(); constructor TLldbInstructionProcessLaunch.Create();