[lldb] Fix build for #145017

Mid-flight collision with #145293.
This commit is contained in:
Pavel Labath
2025-06-24 12:44:17 +02:00
parent bfde147761
commit 4d2b79b04a

View File

@@ -3512,7 +3512,7 @@ Status ProcessGDBRemote::LaunchAndConnectToDebugserver(
// Our process spawned correctly, we can now set our connection to use
// our end of the socket pair
m_gdb_comm.SetConnection(std::make_unique<ConnectionFileDescriptor>(
socket_pair->second.release()));
std::move(socket_pair->second)));
StartAsyncThread();
if (m_gdb_comm.IsConnected()) {