Skip to content

Commit 4d2b79b

Browse files
committed
[lldb] Fix build for llvm#145017
Mid-flight collision with llvm#145293.
1 parent bfde147 commit 4d2b79b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3512,7 +3512,7 @@ Status ProcessGDBRemote::LaunchAndConnectToDebugserver(
35123512
// Our process spawned correctly, we can now set our connection to use
35133513
// our end of the socket pair
35143514
m_gdb_comm.SetConnection(std::make_unique<ConnectionFileDescriptor>(
3515-
socket_pair->second.release()));
3515+
std::move(socket_pair->second)));
35163516
StartAsyncThread();
35173517

35183518
if (m_gdb_comm.IsConnected()) {

0 commit comments

Comments
 (0)