We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 861c943 commit 06bfceeCopy full SHA for 06bfcee
MavLinkCom/src/impl/MavLinkConnectionImpl.cpp
@@ -82,7 +82,7 @@ std::string MavLinkConnectionImpl::acceptTcp(std::shared_ptr<MavLinkConnection>
82
close();
83
std::shared_ptr<TcpClientPort> socket = std::make_shared<TcpClientPort>();
84
85
- port = std::make_shared<Port>(*socket); // this is so that a call to close() can cancel this blocking accept call.
+ port = std::make_shared<Port>(socket); // this is so that a call to close() can cancel this blocking accept call.
86
socket->accept(localAddr, listeningPort);
87
88
std::string remote = socket->remoteAddress();
0 commit comments