Browse Source

fix lambda capture, don't capture copy

pull/1130/head
Jeff Becker 7 years ago
parent
commit
7b00d828b2
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
  1. 2
      libi2pd/Streaming.h

2
libi2pd/Streaming.h

@ -334,7 +334,7 @@ namespace stream @@ -334,7 +334,7 @@ namespace stream
void Stream::AsyncReceive (const Buffer& buffer, ReceiveHandler handler, int timeout)
{
auto s = shared_from_this();
m_Service.post ([=](void)
m_Service.post ([s, buffer, handler, timeout](void)
{
if (!s->m_ReceiveQueue.empty () || s->m_Status == eStreamStatusReset)
s->HandleReceiveTimer (boost::asio::error::make_error_code (boost::asio::error::operation_aborted), buffer, handler, 0);

Loading…
Cancel
Save