Loading libs/vr/libpdx_uds/service_endpoint.cpp +4 −3 Original line number Diff line number Diff line Loading @@ -594,9 +594,10 @@ Status<void> Endpoint::MessageReceive(Message* message) { if (socket_fd_ && event.data.fd == socket_fd_.Get()) { auto status = AcceptConnection(message); if (!status) auto reenable_status = ReenableEpollEvent(socket_fd_.Borrow()); if (!reenable_status) return reenable_status; return status; return ReenableEpollEvent(socket_fd_.Borrow()); } BorrowedHandle channel_fd{event.data.fd}; Loading Loading
libs/vr/libpdx_uds/service_endpoint.cpp +4 −3 Original line number Diff line number Diff line Loading @@ -594,9 +594,10 @@ Status<void> Endpoint::MessageReceive(Message* message) { if (socket_fd_ && event.data.fd == socket_fd_.Get()) { auto status = AcceptConnection(message); if (!status) auto reenable_status = ReenableEpollEvent(socket_fd_.Borrow()); if (!reenable_status) return reenable_status; return status; return ReenableEpollEvent(socket_fd_.Borrow()); } BorrowedHandle channel_fd{event.data.fd}; Loading