Skip to content

Commit 871e3dc

Browse files
committed
[lldb] Fixup #117699 for windows builds
1 parent 8282125 commit 871e3dc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lldb/tools/lldb-server/lldb-gdbserver.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,8 @@ void ConnectToRemote(MainLoop &mainloop,
210210
error.AsCString());
211211
exit(-1);
212212
}
213-
connection_up =
214-
std::unique_ptr<Connection>(new ConnectionFileDescriptor(new TCPSocket(
215-
sockfd, /*should_close=*/true, /*child_processes_inherit=*/false)));
213+
connection_up = std::unique_ptr<Connection>(new ConnectionFileDescriptor(
214+
new TCPSocket(sockfd, /*should_close=*/true)));
216215
#else
217216
url = llvm::formatv("fd://{0}", connection_fd).str();
218217

0 commit comments

Comments
 (0)