mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-07 14:16:30 +02:00
Fix crash in send
This commit is contained in:
parent
9b57dd21ba
commit
f81c67e70e
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ void ClientConnection::disconnect()
|
||||||
void ClientConnection::sendNext()
|
void ClientConnection::sendNext()
|
||||||
{
|
{
|
||||||
auto& message = messages_.front();
|
auto& message = messages_.front();
|
||||||
boost::asio::streambuf streambuf;
|
static boost::asio::streambuf streambuf;
|
||||||
std::ostream stream(&streambuf);
|
std::ostream stream(&streambuf);
|
||||||
tv t;
|
tv t;
|
||||||
message.msg->sent = t;
|
message.msg->sent = t;
|
||||||
|
|
Loading…
Add table
Reference in a new issue