mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-11-16 15:57:39 +00:00
TCPServer: fixed uninitialized variables
This commit is contained in:
parent
7ab21c6afd
commit
e7919514d4
1 changed files with 2 additions and 2 deletions
|
@ -96,8 +96,8 @@ public:
|
|||
|
||||
struct WriteBuf
|
||||
{
|
||||
Client* m_client;
|
||||
uv_write_t m_write;
|
||||
Client* m_client = nullptr;
|
||||
uv_write_t m_write = {};
|
||||
std::vector<uint8_t> m_data;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue