[gdb] fix conn state to use same pipe (instead of a copy)

This commit is contained in:
xbzk
2026-08-31 19:44:50 -03:00
parent cb9ec1dc1a
commit 373126d4ad
+1 -1
View File
@@ -358,7 +358,7 @@ private:
ConnectionState(boost::asio::ip::tcp::socket&& client_socket_, async_pipe signal_pipe_, Kernel::KernelCore& kernel)
: client_socket{std::move(client_socket_)}
, signal_pipe{signal_pipe_}
, signal_pipe{std::move(signal_pipe_)}
, active_thread{kernel, nullptr}
{}