[lldb] [Process/FreeBSDRemote] Fix "Fix attaching via lldb-server"

One of the changes seems to have been lost in rebase.  Reapply.
This commit is contained in:
Michał Górny 2020-11-03 15:00:58 +01:00
parent 6c337945c8
commit fbc0d41bb0
1 changed files with 0 additions and 4 deletions

View File

@ -125,10 +125,6 @@ NativeProcessFreeBSD::Factory::Attach(
if (!status.Success()) if (!status.Success())
return status.ToError(); return status.ToError();
status = process_up->SetupTrace();
if (status.Fail())
return status.ToError();
return std::move(process_up); return std::move(process_up);
} }